bug_report.yml 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  1. name: Bug report
  2. description: Create a report to help us improve
  3. title: "[BUG] "
  4. labels: ["bug"]
  5. body:
  6. - type: markdown
  7. attributes:
  8. value: "## Thank you for making a bug report!"
  9. - type: markdown
  10. attributes:
  11. value: |
  12. Thanks for taking the time to fill out this bug! It's really important to fill this form out completely as
  13. not filling it out will make the bug reports hard to replicate.
  14. - type: input
  15. id: browser
  16. attributes:
  17. label: Browser
  18. description: "What browser and version did this bug occur on?"
  19. placeholder: "e.g. Chrome ver.22, Safari ver.10"
  20. validations:
  21. required: true
  22. - type: input
  23. id: os
  24. attributes:
  25. label: OS
  26. description: "What is the operating system of your device?"
  27. placeholder: "e.g. Windows 10, iOS 14, Ubuntu 23.04"
  28. validations:
  29. required: true
  30. - type: input
  31. id: screen_size
  32. attributes:
  33. label: Screen size
  34. description: "What is the screen size of your device?"
  35. placeholder: "e.g. 800x600, 1920x1080"
  36. validations:
  37. required: true
  38. - type: textarea
  39. id: description
  40. attributes:
  41. label: Describe the bug
  42. description: "A clear and concise description of what the bug is."
  43. validations:
  44. required: true
  45. - type: textarea
  46. id: reproduce
  47. attributes:
  48. label: How to reproduce
  49. description: "How do you trigger this bug? Please walk us through it step by step."
  50. value: |
  51. 1. Go to '...'
  52. 2. Click on '...'
  53. 3. Scroll down to '...'
  54. 4. See error
  55. ...
  56. validations:
  57. required: true
  58. - type: textarea
  59. id: screenshots
  60. attributes:
  61. label: Screenshots
  62. description: "If applicable, add screenshots here to help explain this problem. This helps us understand whats happening better."
  63. validations:
  64. required: false
  65. - type: input
  66. id: jsfiddle
  67. attributes:
  68. label: JSFiddle
  69. description: "Please add a jsFiddle replicating the bug. Without the jsFiddle most bug reports cannot be solved and will be closed."
  70. validations:
  71. required: false
  72. ---