Skip to content

Commit adeb9bc

Browse files
authored
Use New Issue Forms for Bug Reports (wled#2312)
* Convert to Github Issue Forms * Remove pre-filled title * Change bug report from textarea to input
1 parent b44ffff commit adeb9bc

File tree

2 files changed

+83
-27
lines changed

2 files changed

+83
-27
lines changed

.github/ISSUE_TEMPLATE/bug.md

Lines changed: 0 additions & 27 deletions
This file was deleted.

.github/ISSUE_TEMPLATE/bug.yml

Lines changed: 83 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,83 @@
1+
name: Bug Report
2+
description: File a bug report
3+
labels: ["bug"]
4+
body:
5+
- type: markdown
6+
attributes:
7+
value: |
8+
Please quickly search existing issues first before submitting a bug.
9+
- type: textarea
10+
id: what-happened
11+
attributes:
12+
label: What happened?
13+
description: A clear and concise description of what the bug is.
14+
placeholder: Tell us what the problem is.
15+
validations:
16+
required: true
17+
- type: textarea
18+
id: how-to-reproduce
19+
attributes:
20+
label: To Reproduce Bug
21+
description: Steps to reproduce the behavior, if consistently possible.
22+
placeholder: Tell us how to make the bug appear.
23+
validations:
24+
required: true
25+
- type: textarea
26+
id: expected-behavior
27+
attributes:
28+
label: Expected Behavior
29+
description: A clear and concise description of what you expected to happen.
30+
placeholder: Tell us what you expected to happen.
31+
validations:
32+
required: true
33+
- type: dropdown
34+
id: install_format
35+
attributes:
36+
label: Install Method
37+
description: How did you install WLED?
38+
options:
39+
- Binary from WLED.me
40+
- Self-Compiled
41+
validations:
42+
required: true
43+
- type: input
44+
id: version
45+
attributes:
46+
label: What version of WLED?
47+
description: You can find this in by going to Config -> Security & Updates -> Scroll to Bottom. Copy and paste the entire line after "Server message"
48+
placeholder: "e.g. WLED 0.13.0-b4 (build 2110110)"
49+
validations:
50+
required: true
51+
- type: dropdown
52+
id: Board
53+
attributes:
54+
label: Which microcontroller/board are you seeing the problem on?
55+
multiple: true
56+
options:
57+
- ESP8266
58+
- ESP32
59+
- Other
60+
validations:
61+
required: true
62+
- type: textarea
63+
id: logs
64+
attributes:
65+
label: Relevant log/trace output
66+
description: Please copy and paste any relevant log output if you have it. This will be automatically formatted into code, so no need for backticks.
67+
render: shell
68+
- type: textarea
69+
attributes:
70+
label: Anything else?
71+
description: |
72+
Links? References? Anything that will give us more context about the issue you are encountering!
73+
Tip: You can attach images or log files by clicking this area to highlight it and then dragging files in.
74+
validations:
75+
required: false
76+
- type: checkboxes
77+
id: terms
78+
attributes:
79+
label: Code of Conduct
80+
description: By submitting this issue, you agree to follow our [Code of Conduct](https://github.com/Aircoookie/WLED/blob/master/CODE_OF_CONDUCT.md)
81+
options:
82+
- label: I agree to follow this project's Code of Conduct
83+
required: true

0 commit comments

Comments
 (0)