bug_report.en.yml 2.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091
  1. name: "🐛 Bug report"
  2. description: "Report a reproducible bug."
  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.
  10. Please fill in the information below so we can reproduce and fix it faster.
  11. - type: dropdown
  12. id: severity
  13. attributes:
  14. label: Severity
  15. options:
  16. - "S1 - Critical (crash/data loss/security)"
  17. - "S2 - High (major feature broken)"
  18. - "S3 - Medium (workaround exists)"
  19. - "S4 - Low (minor / cosmetic)"
  20. validations:
  21. required: true
  22. - type: input
  23. id: version
  24. attributes:
  25. label: Version / Commit
  26. description: "Which version are you using? (e.g., v1.2.3, commit SHA)"
  27. placeholder: "v1.2.3 / 1a2b3c4"
  28. validations:
  29. required: false
  30. - type: textarea
  31. id: what_happened
  32. attributes:
  33. label: What happened?
  34. description: "Describe the bug clearly."
  35. placeholder: "A clear and concise description..."
  36. validations:
  37. required: true
  38. - type: textarea
  39. id: expected
  40. attributes:
  41. label: What did you expect?
  42. placeholder: "Expected behavior..."
  43. validations:
  44. required: true
  45. - type: textarea
  46. id: steps
  47. attributes:
  48. label: Steps to reproduce
  49. description: "Provide minimal steps to reproduce."
  50. placeholder: |
  51. 1. Go to ...
  52. 2. Run ...
  53. 3. See error ...
  54. validations:
  55. required: true
  56. - type: textarea
  57. id: logs
  58. attributes:
  59. label: Logs / Screenshots
  60. description: "Paste logs or attach screenshots if applicable."
  61. render: shell
  62. validations:
  63. required: false
  64. - type: textarea
  65. id: env
  66. attributes:
  67. label: Environment
  68. description: "OS / runtime / dependencies"
  69. placeholder: |
  70. - OS: Windows 11 / Ubuntu 22.04 / macOS 14
  71. - Runtime: Python 3.11 / Node 20
  72. - Package manager: pip/conda/npm
  73. validations:
  74. required: false
  75. - type: checkboxes
  76. id: checklist
  77. attributes:
  78. label: Checklist
  79. options:
  80. - label: "I searched existing issues and did not find a duplicate."
  81. required: true
  82. - label: "I can reproduce this consistently."
  83. required: false