Skip to content

Commit fe6d9ff

Browse files
committed
add issue templates
1 parent b01b40d commit fe6d9ff

File tree

3 files changed

+61
-0
lines changed

3 files changed

+61
-0
lines changed
Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
name: "Bug Report"
2+
description: "Report software deficiencies"
3+
labels: ["bug"]
4+
body:
5+
- type: "markdown"
6+
attributes:
7+
value: |
8+
Use this form to report any functional or performance bugs you've found in the software.
9+
Be sure to check if your [issue](https://github.com/y-scope/ystdlib-cpp/issues) has already
10+
been reported.
11+
- type: "textarea"
12+
attributes:
13+
label: "Bug"
14+
description: "Describe what's wrong and if applicable, what you expected instead."
15+
validations:
16+
required: true
17+
18+
- type: "input"
19+
attributes:
20+
label: "ystdlib-cpp version"
21+
description: "The release version number or development commit hash that has the bug."
22+
placeholder: "Version number or commit hash"
23+
validations:
24+
required: true
25+
26+
- type: "textarea"
27+
attributes:
28+
label: "Environment"
29+
description: "The environment in which you're running ystdlib-cpp."
30+
placeholder: "OS version, Docker version, etc."
31+
validations:
32+
required: true
33+
34+
- type: "textarea"
35+
attributes:
36+
label: "Reproduction steps"
37+
description: "List each step required to reproduce the bug."
38+
validations:
39+
required: true

.github/ISSUE_TEMPLATE/config.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
blank_issues_enabled: true
Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
name: "Feature/Change Request"
2+
description: "Request a feature or change"
3+
labels: ["enhancement"]
4+
body:
5+
- type: "markdown"
6+
attributes:
7+
value: |
8+
Use this form to request a feature/change in the software, or the project as a whole.
9+
- type: "textarea"
10+
attributes:
11+
label: "Request"
12+
description: "Describe your request and why it's important."
13+
validations:
14+
required: true
15+
16+
- type: "textarea"
17+
attributes:
18+
label: "Possible implementation"
19+
description: "Describe any implementations you have in mind."
20+
validations:
21+
required: true

0 commit comments

Comments
 (0)