Skip to content

Commit 7f490f2

Browse files
committed
Added issues templates
1 parent 9a2045a commit 7f490f2

File tree

2 files changed

+106
-0
lines changed

2 files changed

+106
-0
lines changed
Lines changed: 77 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,77 @@
1+
# Source: https://github.com/arduino/tooling-project-assets/blob/main/issue-templates/forms/platform-dependent/bug-report.yml
2+
# See: https://docs.github.com/communities/using-templates-to-encourage-useful-issues-and-pull-requests/syntax-for-issue-forms
3+
4+
name: Bug report
5+
description: Report a problem with the code or documentation in this repository.
6+
labels:
7+
- bug
8+
body:
9+
- type: textarea
10+
id: description
11+
attributes:
12+
label: Describe the problem
13+
validations:
14+
required: true
15+
- type: textarea
16+
id: reproduce
17+
attributes:
18+
label: To reproduce
19+
description: |
20+
Provide the specific set of steps we can follow to reproduce the
21+
problem in particular the exact golang source code you used.
22+
validations:
23+
required: true
24+
- type: checkboxes
25+
id: checklist-reproduce
26+
attributes:
27+
label: |
28+
Please double-check that you have reported each of the following
29+
before submitting the issue.
30+
options:
31+
- label: I've provided the FULL source code that causes the problem
32+
required: true
33+
- label: I've provided all the actions required to reproduce the problem
34+
required: true
35+
- type: textarea
36+
id: expected
37+
attributes:
38+
label: Expected behavior
39+
description: |
40+
What would you expect to happen after following those instructions?
41+
validations:
42+
required: true
43+
- type: input
44+
id: os
45+
attributes:
46+
label: Operating system and version
47+
description: |
48+
Which operating system(s) version are you using on your computer?
49+
validations:
50+
required: true
51+
- type: input
52+
id: boards
53+
attributes:
54+
label: Arduino boards or embedded devices used
55+
description: |
56+
Which Arduino boards or embedded devices are you using (if applicable)?
57+
- type: textarea
58+
id: additional
59+
attributes:
60+
label: Additional context
61+
description: |
62+
Add here any additional information that you think might be relevant to
63+
the problem.
64+
validations:
65+
required: false
66+
- type: checkboxes
67+
id: checklist
68+
attributes:
69+
label: Issue checklist
70+
description: |
71+
Please double-check that you have done each of the following things before
72+
submitting the issue.
73+
options:
74+
- label: I searched for previous requests in [the issue tracker](https://github.com/bugst/go-serial/issues)
75+
required: true
76+
- label: My request contains all necessary details
77+
required: true
Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
# Source: https://github.com/arduino/tooling-project-assets/blob/main/issue-templates/forms/platform-dependent/feature-request.yml
2+
# See: https://docs.github.com/communities/using-templates-to-encourage-useful-issues-and-pull-requests/syntax-for-issue-forms
3+
4+
name: Feature request
5+
description: Suggest an enhancement to this project.
6+
labels:
7+
- "type: enhancement"
8+
body:
9+
- type: textarea
10+
id: description
11+
attributes:
12+
label: Describe the new feature or change suggestion
13+
validations:
14+
required: true
15+
- type: textarea
16+
id: additional
17+
attributes:
18+
label: Additional context
19+
description: Add any additional information about the feature request here.
20+
- type: checkboxes
21+
id: checklist
22+
attributes:
23+
label: Issue checklist
24+
description: Please double-check that you have done each of the following things before submitting the issue.
25+
options:
26+
- label: I searched for previous requests in [the issue tracker](https://github.com/bugst/go-serial/issues)
27+
required: true
28+
- label: My request contains all necessary details
29+
required: true

0 commit comments

Comments
 (0)