Skip to content

Commit 0e42ba4

Browse files
authored
Merge pull request #37 from Jim-Hodapp-Coaching/add_issues_templates
Add GitHub issue templates
2 parents abe93ab + 0d0d0ae commit 0e42ba4

File tree

2 files changed

+59
-0
lines changed

2 files changed

+59
-0
lines changed
Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
name: Bug Report
2+
description: File a bug report for esp32-wroom-rp
3+
title: "[Bug]: "
4+
labels: ["bug", "triage"]
5+
6+
body:
7+
- type: markdown
8+
attributes:
9+
value: |
10+
Thanks for taking the time to fill out this bug report!
11+
- type: input
12+
id: contact
13+
attributes:
14+
label: Contact Details
15+
description: How can we get in touch with you if we need more info?
16+
placeholder: ex. email@example.com
17+
validations:
18+
required: false
19+
- type: textarea
20+
id: what-happened
21+
attributes:
22+
label: What happened?
23+
description: Describe the issue here.
24+
placeholder: Tell us what you see!
25+
value: "A bug happened!"
26+
validations:
27+
required: true
28+
- type: input
29+
id: hardware
30+
attributes:
31+
label: What is the exact model of RP2040 hardware you are seeing the problem on?
32+
placeholder: ex. Raspberry Pi Pico, Adafruit Feather RP2040, etc.
33+
validations:
34+
required: true
35+
- type: textarea
36+
id: logs
37+
attributes:
38+
label: Any related code to produce this issue.
39+
description: Please copy and paste any relevant code to re-produce this issue. If you have your own public repository, you can link to that here.
40+
render: shell
Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
name: Feature request
2+
description: Suggest an feature / idea for this project
3+
title: "[Feature Request / Suggestion]: "
4+
labels: ["enhancement"]
5+
body:
6+
- type: markdown
7+
attributes:
8+
value: |
9+
We appreciate your feedback on how to improve this project. Please be sure to include as much details & any resources as possible!
10+
- type: textarea
11+
id: Suggestion
12+
attributes:
13+
label: Suggestion / Feature Request
14+
description: Describe the feature(s) you would like to see added.
15+
placeholder: Tell us your suggestion
16+
value: "Your suggestion here"
17+
validations:
18+
required: true
19+

0 commit comments

Comments
 (0)