You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Summary
This PR contains adding:
Issue template using forms
Feature Template using forms
Update of Pull Request template
All yaml files have been checked by online validator.
Pages are rendered here (for easier review):
Feature Request template
Issue Template
Impact
These templates can help with more accurate issue/PR explanations which can improve handling these contribution and in overall have a positive influence on User experience.
Related links
This PR closed issue espressif#5956
* We welcome any ideas or feature requests! It is helpful if you can explain exactly why the feature would be useful.
9
+
* There are usually some outstanding feature requests in the [existing issues list](https://github.com/espressif/arduino-esp32/issues?q=is%3Aopen+is%3Aissue+label%3A%22Type%3A+Feature+request%22), feel free to add comments to them.
10
+
* If you would like to contribute, please read the [contributions guide](https://docs.espressif.com/projects/arduino-esp32/en/latest/contributing.html).
11
+
- type: input
12
+
id: Area
13
+
attributes:
14
+
label: Related area
15
+
description: Please briefly explain the area of your Feature Request.
16
+
placeholder: eg. Board support, specific Peripheral, BT, Wifi...
17
+
validations:
18
+
required: true
19
+
- type: input
20
+
id: HW
21
+
attributes:
22
+
label: Hardware specification
23
+
description: Please provide if your proposal depends on specific Hardware.
24
+
placeholder: eg. Support for ESP32 DevKitC, ESP32-C3 DevKitM...
25
+
validations:
26
+
required: true
27
+
- type: textarea
28
+
id: problem-related
29
+
attributes:
30
+
label: Is your feature request related to a problem?
31
+
description: Please provide a clear and concise description of what the problem is. Add relevant issue link.
32
+
placeholder: ex. I'm facing the issue/missing function...
33
+
validations:
34
+
required: true
35
+
- type: textarea
36
+
id: solution
37
+
attributes:
38
+
label: Describe the solution you'd like
39
+
description: Please provide a clear and concise description of what you want to happen.
40
+
placeholder: ex. When using this function...
41
+
validations:
42
+
required: true
43
+
- type: textarea
44
+
id: alternatives
45
+
attributes:
46
+
label: Describe alternatives you've considered
47
+
description: Please provide a clear and concise description of any alternative solutions or features you've considered.
48
+
placeholder: ex. Choosing other approach wouldn't work, because...
49
+
- type: textarea
50
+
id: context
51
+
attributes:
52
+
label: Additional context
53
+
description: Please add any other context or screenshots about the feature request here.
description: Please provide your sketch/code which was run
104
+
placeholder: ex. related part of the code
105
+
render: cpp
106
+
validations:
107
+
required: true
108
+
- type: textarea
109
+
id: Debug
110
+
attributes:
111
+
label: Debug Message
112
+
description: Please provide a debug message or error message. If you have a Guru Meditation Error or Backtrace, please decode it with [ExceptionDecoder](https://github.com/me-no-dev/EspExceptionDecoder)
113
+
placeholder: Enable Core debug level - Debug on tools menu of Arduino IDE, then put the serial output here.
114
+
render: plain
115
+
validations:
116
+
required: true
117
+
- type: textarea
118
+
id: other-remarks
119
+
attributes:
120
+
label: Other Steps to Reproduce
121
+
description: Is there any other information you can think of which will help us reproduce this problem? Any additional info can be added as well.
122
+
placeholder: ex. I also tried on other OS, HW...it works correctly on that setup.
123
+
- type: checkboxes
124
+
id: confirmation
125
+
attributes:
126
+
label: I have checked existing issues, online documentation and the Troubleshooting Guide
127
+
description: You agree to check all the resources above before opening a new issue.
128
+
options:
129
+
- label: I confirm I have checked existing issues, online documentation and Troubleshooting guide.
Copy file name to clipboardExpand all lines: README.md
+1-1
Original file line number
Diff line number
Diff line change
@@ -38,7 +38,7 @@ You can use [EspExceptionDecoder](https://github.com/me-no-dev/EspExceptionDecod
38
38
### Issue/Bug report template
39
39
Before reporting an issue, make sure you've searched for similar one that was already created. Also make sure to go through all the issues labelled as [Type: For reference](https://github.com/espressif/arduino-esp32/issues?q=is%3Aissue+label%3A%22Type%3A+For+reference%22+).
40
40
41
-
Finally, if you are sure no one else had the issue, follow the [issue template](docs/ISSUE_TEMPLATE.md)while reporting any issue.
41
+
Finally, if you are sure no one else had the issue, follow the **Issue template** or **Feature request template**while reporting any [new Issue](https://github.com/espressif/arduino-esp32/issues/new/choose).
0 commit comments