1.bug_report.yml 2.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. name: Bug Report
  2. description: Create a bug report
  3. labels: 'bug'
  4. body:
  5. - type: markdown
  6. attributes:
  7. value: Thanks for taking the time to file a bug report! Please fill out this form as completely as possible.
  8. - type: markdown
  9. attributes:
  10. value: If you leave out sections there is a high likelihood it will be moved to the GitHub Discussions ["Q&A / Help" section](https://github.com/wkentaro/labelme/discussions/categories/q-a-help).
  11. - type: textarea
  12. attributes:
  13. label: Provide environment information
  14. description: Please run `which python; python --version; python -m pip list | grep labelme` in the root directory of your project and paste the results.
  15. validations:
  16. required: true
  17. - type: input
  18. attributes:
  19. label: What OS are you using? (if relevant)
  20. description: 'Please specify the exact version. For example: macOS 12.4, Ubuntu 20.04.4'
  21. - type: textarea
  22. attributes:
  23. label: Describe the Bug
  24. description: A clear and concise description of what the bug is.
  25. validations:
  26. required: true
  27. - type: textarea
  28. attributes:
  29. label: Expected Behavior
  30. description: A clear and concise description of what you expected to happen.
  31. - type: textarea
  32. attributes:
  33. label: To Reproduce
  34. description: Steps to reproduce the behavior, please provide a clear description of how to reproduce the issue, based on the linked minimal reproduction. Screenshots can be provided in the issue body below. If using code blocks, make sure that [syntax highlighting is correct](https://docs.github.com/en/get-started/writing-on-github/working-with-advanced-formatting/creating-and-highlighting-code-blocks#syntax-highlighting) and double check that the rendered preview is not broken.
  35. - type: markdown
  36. attributes:
  37. value: Before posting the issue go through the steps you've written down to make sure the steps provided are detailed and clear.
  38. - type: markdown
  39. attributes:
  40. value: Contributors should be able to follow the steps provided in order to reproduce the bug.
  41. - type: markdown
  42. attributes:
  43. value: These steps are used to add integration tests to ensure the same issue does not happen again. Thanks in advance!