Skip to content

Commit db23ec2

Browse files
add issue template file and config, resolve #46
1 parent 276165a commit db23ec2

File tree

2 files changed

+71
-0
lines changed

2 files changed

+71
-0
lines changed

.github/ISSUE_TEMPLATE/config.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
blank_issues_enabled: false

.github/ISSUE_TEMPLATE/issue.yml

Lines changed: 70 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,70 @@
1+
name: "Default issue"
2+
description: Report any kind of issue
3+
body:
4+
- type: textarea
5+
id: description
6+
attributes:
7+
label: Description
8+
description: Please enter an explicit description of your issue
9+
placeholder: Short and explicit description of your incident...
10+
validations:
11+
required: true
12+
- type: textarea
13+
id: reproduction
14+
attributes:
15+
label: Reproduction steps
16+
description: Please enter an explicit description to reproduce this issue
17+
value: |
18+
1.
19+
2.
20+
3.
21+
...
22+
validations:
23+
required: true
24+
- type: input
25+
id: version
26+
attributes:
27+
label: MicroPython version
28+
description: Which MicroPython version are you using?
29+
placeholder: v1.19.1
30+
validations:
31+
required: true
32+
- type: dropdown
33+
id: board
34+
attributes:
35+
label: MicroPython board
36+
description: Which MicroPython board are you using?
37+
options:
38+
- pyboard
39+
- Raspberry Pico
40+
- ESP32
41+
- ESP8266
42+
- WiPy
43+
- i.MXRT
44+
- SAMD21/SAMD51
45+
- Renesas
46+
- Zephyr
47+
- UNIX
48+
- other
49+
validations:
50+
required: true
51+
- type: textarea
52+
id: logs
53+
attributes:
54+
label: Relevant log output
55+
description: Please copy and paste any relevant log output. This will be automatically formatted into code, so no need for backticks.
56+
render: bash
57+
- type: textarea
58+
id: usercode
59+
attributes:
60+
label: User code
61+
description: Please copy and paste any relevant user code. This will be automatically formatted into Python code, so no need for backticks.
62+
render: python
63+
- type: textarea
64+
id: additional
65+
attributes:
66+
label: Additional informations
67+
description: Please provide additional informations if available
68+
placeholder: Some more informations
69+
validations:
70+
required: false

0 commit comments

Comments
 (0)