bug_report.yml 5.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184
  1. name: 🪲 Report a bug
  2. description: Create a bug report to help improve Marlin Firmware
  3. title: "[BUG] (bug summary)"
  4. labels: ["Bug: Potential ?"]
  5. body:
  6. - type: markdown
  7. attributes:
  8. value: >
  9. Do you want to ask a question? Are you looking for support? Please use one of the [support links](https://github.com/MarlinFirmware/Marlin/issues/new/choose).
  10. - type: markdown
  11. attributes:
  12. value: |
  13. **Thank you for reporting a bug in Marlin Firmware!**
  14. ## Before Reporting a Bug
  15. - Read and understand Marlin's [Code of Conduct](https://github.com/MarlinFirmware/Marlin/blob/bugfix-2.1.x/.github/code_of_conduct.md). You are expected to comply with it, including treating everyone with respect.
  16. - Test with the [`bugfix-2.1.x` branch](https://github.com/MarlinFirmware/Marlin/archive/bugfix-2.1.x.zip) to see whether the issue still exists.
  17. ## Instructions
  18. Please follow the instructions below. Failure to do so may result in your issue being closed. See [Contributing to Marlin](https://github.com/MarlinFirmware/Marlin/blob/bugfix-2.1.x/.github/contributing.md) for additional guidelines.
  19. 1. Provide a good title starting with [BUG].
  20. 2. Fill out all sections of this bug report form.
  21. 3. Always attach configuration files so we can build and test your setup.
  22. - type: dropdown
  23. attributes:
  24. label: Did you test the latest `bugfix-2.1.x` code?
  25. description: >-
  26. Always try the latest code to make sure the issue you are reporting is not already fixed. To download
  27. the latest code just [click this link](https://github.com/MarlinFirmware/Marlin/archive/bugfix-2.1.x.zip).
  28. options:
  29. - Yes, and the problem still exists.
  30. - No, but I will test it now!
  31. validations:
  32. required: true
  33. - type: markdown
  34. attributes:
  35. value: |
  36. # Bug Details
  37. - type: textarea
  38. attributes:
  39. label: Bug Description
  40. description: >-
  41. Describe the bug in this section. Tell us what you were trying to do and what
  42. happened that you did not expect. Provide a clear and concise description of the
  43. problem and include as many details as possible.
  44. When pasting formatted text don't forget to put ` ``` ` (on its own line) before and after to make it readable.
  45. placeholder: |
  46. Marlin doesn't work.
  47. validations:
  48. required: true
  49. - type: input
  50. attributes:
  51. label: Bug Timeline
  52. description: Is this a new bug or an old issue? When did it first start?
  53. - type: textarea
  54. attributes:
  55. label: Expected behavior
  56. description: >-
  57. What did you expect to happen?
  58. placeholder: I expected it to move left.
  59. - type: textarea
  60. attributes:
  61. label: Actual behavior
  62. description: What actually happened instead?
  63. placeholder: It moved right instead of left.
  64. - type: textarea
  65. attributes:
  66. label: Steps to Reproduce
  67. description: >-
  68. Please describe the steps needed to reproduce the issue.
  69. placeholder: |
  70. 1. [First Step] ...
  71. 2. [Second Step] ...
  72. 3. [and so on] ...
  73. - type: markdown
  74. attributes:
  75. value: |
  76. # Your Setup
  77. - type: input
  78. attributes:
  79. label: Version of Marlin Firmware
  80. description: "See the About Menu on the LCD or the output of `M115`. NOTE: For older releases we only patch critical bugs."
  81. validations:
  82. required: true
  83. - type: input
  84. attributes:
  85. label: Printer model
  86. description: Creality Ender-3, Prusa mini, or Kossel Delta?
  87. - type: input
  88. attributes:
  89. label: Electronics
  90. description: Stock electronics, upgrade board, or something else?
  91. - type: input
  92. attributes:
  93. label: LCD/Controller
  94. description: Some Marlin behaviors are determined by the controller. Describe your LCD/Controller model and version.
  95. - type: input
  96. attributes:
  97. label: Other add-ons
  98. description: Please list any other hardware add-ons that could be involved.
  99. - type: dropdown
  100. attributes:
  101. label: Bed Leveling
  102. description: What kind of bed leveling compensation are you using?
  103. options:
  104. - UBL Bilinear mesh
  105. - ABL Bilinear mesh
  106. - ABL Linear grid
  107. - ABL 3-point
  108. - MBL Manual Bed Leveling
  109. - No Bed Leveling
  110. - type: dropdown
  111. attributes:
  112. label: Your Slicer
  113. description: Do you use Slic3r, Prusa Slicer, Simplify3D, IdeaMaker...?
  114. options:
  115. - Slic3r
  116. - Simplify3D
  117. - Prusa Slicer
  118. - IdeaMaker
  119. - Cura
  120. - Other (explain below)
  121. - type: dropdown
  122. attributes:
  123. label: Host Software
  124. description: Do you use OctoPrint, Repetier Host, Pronterface...?
  125. options:
  126. - SD Card (headless)
  127. - Repetier Host
  128. - OctoPrint
  129. - Pronterface
  130. - Cura
  131. - Same as my slicer
  132. - Other (explain below)
  133. - type: markdown
  134. attributes:
  135. value: |
  136. # Attachments
  137. - type: checkboxes
  138. attributes:
  139. label: Don't forget to include
  140. options:
  141. - label: A ZIP file containing your `Configuration.h` and `Configuration_adv.h`.
  142. required: true
  143. - type: markdown
  144. attributes:
  145. value: |
  146. ### Optional items to include:
  147. - 'Log output from the host. (`M111 S247` for maximum logging.)'
  148. - Images or videos demonstrating the problem, if it helps to make it clear.
  149. - A G-Code file that exposes the problem, if not affecting _all_ G-code.
  150. - type: textarea
  151. attributes:
  152. label: Additional information & file uploads
  153. description: >-
  154. If you've made any other modifications to the firmware, please describe them in detail.
  155. When pasting formatted text don't forget to put ` ``` ` (on its own line) before and after to make it readable.