Skip to content

Commit ad772c5

Browse files
authored
Merge pull request #667 from adafruit/use-bug-form-template
use bug form template
2 parents 6e1fc99 + 6a0a64e commit ad772c5

File tree

3 files changed

+85
-30
lines changed

3 files changed

+85
-30
lines changed

.github/ISSUE_TEMPLATE/bug_report.md

Lines changed: 0 additions & 29 deletions
This file was deleted.
Lines changed: 84 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,84 @@
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: "Release version or github latest"
43+
validations:
44+
required: true
45+
46+
- type: textarea
47+
attributes:
48+
label: Sketch
49+
placeholder: |
50+
e.g Bluefruit52Lib/examples/Peripheral/bleuart
51+
If it is custom sketch, please provide links to your minimal sources or as attached files.
52+
validations:
53+
required: true
54+
55+
- type: textarea
56+
attributes:
57+
label: What happened ?
58+
placeholder: A clear and concise description of what the bug is.
59+
validations:
60+
required: true
61+
62+
- type: textarea
63+
attributes:
64+
label: How to reproduce ?
65+
placeholder: |
66+
1. Go to '...'
67+
2. Click on '....'
68+
3. See error
69+
validations:
70+
required: true
71+
72+
- type: textarea
73+
attributes:
74+
label: Debug Log
75+
placeholder: Serial output when IDE's Debug Mode Level to 1 or 2 as attached txt file.
76+
validations:
77+
required: false
78+
79+
- type: textarea
80+
attributes:
81+
label: Screenshots
82+
description: If applicable, add screenshots to help explain your problem.
83+
validations:
84+
required: false

0 commit comments

Comments
 (0)