Skip to content

Commit 5536180

Browse files
authored
add issue templates (#288)
1 parent 36bed7b commit 5536180

File tree

2 files changed

+45
-0
lines changed

2 files changed

+45
-0
lines changed

.github/ISSUE_TEMPLATE/bug.yaml

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
name: "Bug report"
2+
description: Bug report template
3+
title: "Bug: short description"
4+
labels: ["bug", "triage"]
5+
body:
6+
- type: input
7+
id: version
8+
attributes:
9+
label: Version
10+
validations:
11+
required: true
12+
- type: input
13+
id: Evnironment
14+
attributes:
15+
label: Environment
16+
description: (OS, Node.js version)
17+
- type: textarea
18+
id: expected-behavior
19+
attributes:
20+
label: Expected behavior
21+
validations:
22+
required: true
23+
- type: textarea
24+
id: actual-behavior
25+
attributes:
26+
label: Actual behavior
27+
validations:
28+
required: true
29+
- type: textarea
30+
id: steps-to-reproduce
31+
attributes:
32+
label: Steps to reproduce
33+
validations:
34+
required: true

.github/ISSUE_TEMPLATE/feature.yaml

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
name: "Feature request"
2+
description: Feature request template
3+
title: "Feature request: short description"
4+
labels: ["feature request", "triage"]
5+
body:
6+
- type: textarea
7+
id: desired-behavior
8+
attributes:
9+
label: Feature request description/rationale
10+
validations:
11+
required: true

0 commit comments

Comments
 (0)