bug_report.yml 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384
  1. name: Bug Report
  2. description: Report a bug or unexpected behavior
  3. title: "[Bug]: "
  4. labels: ["bug"]
  5. body:
  6. - type: markdown
  7. attributes:
  8. value: |
  9. Thanks for taking the time to report a bug! Please fill out the information below to help us investigate.
  10. - type: textarea
  11. id: description
  12. attributes:
  13. label: Bug Description
  14. description: A clear and concise description of the bug.
  15. placeholder: Describe what happened...
  16. validations:
  17. required: true
  18. - type: textarea
  19. id: steps
  20. attributes:
  21. label: Steps to Reproduce
  22. description: How can we reproduce this issue?
  23. placeholder: |
  24. 1. Go to '...'
  25. 2. Click on '...'
  26. 3. See error
  27. validations:
  28. required: true
  29. - type: textarea
  30. id: expected
  31. attributes:
  32. label: Expected Behavior
  33. description: What did you expect to happen?
  34. validations:
  35. required: true
  36. - type: textarea
  37. id: actual
  38. attributes:
  39. label: Actual Behavior
  40. description: What actually happened?
  41. validations:
  42. required: true
  43. - type: dropdown
  44. id: deployment
  45. attributes:
  46. label: Deployment Method
  47. options:
  48. - Local development (npm run dev / pnpm dev / yarn dev)
  49. - Vercel deployment
  50. - Docker
  51. - Other
  52. validations:
  53. required: true
  54. - type: input
  55. id: browser
  56. attributes:
  57. label: Browser
  58. description: Which browser are you using?
  59. placeholder: e.g. Chrome 120, Firefox 121, Safari 17
  60. - type: input
  61. id: os
  62. attributes:
  63. label: Operating System
  64. placeholder: e.g. macOS 14.2, Windows 11, Ubuntu 22.04
  65. - type: textarea
  66. id: logs
  67. attributes:
  68. label: Relevant Logs / Screenshots
  69. description: Paste any error messages, console logs, or screenshots.
  70. render: shell
  71. - type: textarea
  72. id: additional
  73. attributes:
  74. label: Additional Context
  75. description: Any other information that might be helpful.