bug_report.yml 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126
  1. name: Bug Report
  2. description: Report a bug or unexpected behavior
  3. title: "[Bug]: "
  4. labels: ["bug", "triage"]
  5. body:
  6. - type: markdown
  7. attributes:
  8. value: |
  9. Thanks for taking the time to report a bug! Please fill out the form below.
  10. - type: textarea
  11. id: description
  12. attributes:
  13. label: Bug Description
  14. description: A clear and concise description of what the bug is.
  15. placeholder: Describe what happened...
  16. validations:
  17. required: true
  18. - type: textarea
  19. id: expected
  20. attributes:
  21. label: Expected Behavior
  22. description: What did you expect to happen?
  23. placeholder: Describe what you expected...
  24. validations:
  25. required: true
  26. - type: textarea
  27. id: steps
  28. attributes:
  29. label: Steps to Reproduce
  30. description: How can we reproduce this issue?
  31. placeholder: |
  32. 1. Go to '...'
  33. 2. Click on '...'
  34. 3. See error
  35. validations:
  36. required: true
  37. - type: dropdown
  38. id: printer
  39. attributes:
  40. label: Printer Model
  41. description: Which printer model are you using?
  42. options:
  43. - X1 Carbon
  44. - X1
  45. - P1S
  46. - P1P
  47. - A1
  48. - A1 Mini
  49. - H2D
  50. - H2C
  51. - H2S
  52. - Multiple printers
  53. - Not printer-related
  54. validations:
  55. required: true
  56. - type: input
  57. id: version
  58. attributes:
  59. label: Bambuddy Version
  60. description: Which version of Bambuddy are you running? (Check Settings page)
  61. placeholder: e.g., 0.1.5
  62. validations:
  63. required: true
  64. - type: dropdown
  65. id: installation
  66. attributes:
  67. label: Installation Method
  68. description: How did you install Bambuddy?
  69. options:
  70. - Manual (git clone)
  71. - Docker
  72. - Other
  73. validations:
  74. required: true
  75. - type: dropdown
  76. id: os
  77. attributes:
  78. label: Operating System
  79. description: What OS is Bambuddy running on?
  80. options:
  81. - Linux (Ubuntu/Debian)
  82. - Linux (Other)
  83. - macOS
  84. - Windows
  85. - Docker
  86. - Other
  87. validations:
  88. required: true
  89. - type: textarea
  90. id: logs
  91. attributes:
  92. label: Relevant Logs
  93. description: Please paste any relevant logs here. Check `logs/bambuddy.log` or use `DEBUG=true` for verbose logging.
  94. render: shell
  95. placeholder: |
  96. Paste logs here...
  97. - type: textarea
  98. id: screenshots
  99. attributes:
  100. label: Screenshots
  101. description: If applicable, add screenshots to help explain your problem.
  102. - type: textarea
  103. id: additional
  104. attributes:
  105. label: Additional Context
  106. description: Add any other context about the problem here.
  107. - type: checkboxes
  108. id: checklist
  109. attributes:
  110. label: Checklist
  111. options:
  112. - label: I have searched existing issues to ensure this bug hasn't already been reported
  113. required: true
  114. - label: I am using the latest version of Bambuddy
  115. required: false