Skip to content

Commit e7b70a5

Browse files
committed
use bug report form template
1 parent 3471166 commit e7b70a5

File tree

2 files changed

+92
-34
lines changed

2 files changed

+92
-34
lines changed

.github/ISSUE_TEMPLATE/bug_report.md

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

.github/ISSUE_TEMPLATE/bug_report.yml

Lines changed: 92 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,92 @@
1+
name: Bug Report
2+
description: Report a problem with TinyUSB Library
3+
labels: 'Bug'
4+
body:
5+
- type: markdown
6+
attributes:
7+
value: |
8+
Thanks for taking the time to fill out this bug report!
9+
It's okay to leave some blank if it doesn't apply to your problem.
10+
11+
- type: dropdown
12+
attributes:
13+
label: Operating System
14+
options:
15+
- Linux
16+
- MacOS
17+
- RaspberryPi OS
18+
- Windows 7
19+
- Windows 10
20+
- Windows 11
21+
- Others
22+
validations:
23+
required: true
24+
25+
- type: input
26+
attributes:
27+
label: IDE version
28+
placeholder: e.g Arduino 1.8.15
29+
validations:
30+
required: true
31+
32+
- type: input
33+
attributes:
34+
label: Board
35+
placeholder: e.g Feather nRF52840 Express
36+
validations:
37+
required: true
38+
39+
- type: input
40+
attributes:
41+
label: BSP version
42+
description: Can be found under "Board Manager" menu
43+
validations:
44+
required: true
45+
46+
- type: input
47+
attributes:
48+
label: TinyUSB Library version
49+
placeholder: "Relase version or github latest"
50+
validations:
51+
required: true
52+
53+
- type: textarea
54+
attributes:
55+
label: Firmware
56+
placeholder: |
57+
e.g examples/device/cdc_msc.
58+
If it is custom firmware, please provide links to your minimal sources or as attached files.
59+
validations:
60+
required: true
61+
62+
- type: textarea
63+
attributes:
64+
label: What happened ?
65+
placeholder: A clear and concise description of what the bug is.
66+
validations:
67+
required: true
68+
69+
- type: textarea
70+
attributes:
71+
label: How to reproduce ?
72+
placeholder: |
73+
1. Go to '...'
74+
2. Click on '....'
75+
3. See error
76+
validations:
77+
required: true
78+
79+
- type: textarea
80+
attributes:
81+
label: Debug Log
82+
placeholder: |
83+
TinyUSB debug log where the issue occurred as attached txt file, best with comments to explain the actual events.
84+
validations:
85+
required: false
86+
87+
- type: textarea
88+
attributes:
89+
label: Screenshots
90+
description: If applicable, add screenshots to help explain your problem.
91+
validations:
92+
required: false

0 commit comments

Comments
 (0)