1.bug_report.yml 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  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?
  20. description: 'Please specify the exact version. For example: macOS 12.4, Ubuntu 20.04.4'
  21. validations:
  22. required: true
  23. - type: textarea
  24. attributes:
  25. label: Describe the Bug
  26. description: A clear and concise description of what the bug is.
  27. validations:
  28. required: true
  29. - type: textarea
  30. attributes:
  31. label: Expected Behavior
  32. description: A clear and concise description of what you expected to happen.
  33. - type: textarea
  34. attributes:
  35. label: To Reproduce
  36. 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.
  37. - type: markdown
  38. attributes:
  39. value: Before posting the issue go through the steps you've written down to make sure the steps provided are detailed and clear.
  40. - type: markdown
  41. attributes:
  42. value: Contributors should be able to follow the steps provided in order to reproduce the bug.
  43. - type: markdown
  44. attributes:
  45. value: These steps are used to add integration tests to ensure the same issue does not happen again. Thanks in advance!