Skip to content

Commit a15db90

Browse files
chore: add issue templates (#293)
1 parent 28880fb commit a15db90

File tree

3 files changed

+37
-0
lines changed

3 files changed

+37
-0
lines changed

.github/ISSUE_TEMPLATE/1-bug.yml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
name: Bug
2+
description: Bug ticket
3+
title: '[Bug]: '
4+
labels: ['bug']
5+
body:
6+
- type: textarea
7+
id: description
8+
attributes:
9+
label: Description
10+
description: Describe the behavior you expected and what actually happened. Please provide any additional information that may be helpful in diagnosing the issue.
11+
validations:
12+
required: true

.github/ISSUE_TEMPLATE/2-feat.yml

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
name: Feat
2+
description: Feature ticket
3+
title: '[Feat]: '
4+
labels: ['feat']
5+
body:
6+
- type: textarea
7+
id: description
8+
attributes:
9+
label: Description
10+
description: Describe the feature.
11+
placeholder: "- As a \n- I want \n-so that I can"
12+
validations:
13+
required: true

.github/ISSUE_TEMPLATE/3-chore.yml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
name: Chore
2+
description: Chore ticket
3+
title: '[Chore]: '
4+
labels: ['chore']
5+
body:
6+
- type: textarea
7+
id: description
8+
attributes:
9+
label: Description
10+
description: Why is it needed? What is the expected outcome? What is the impact?
11+
validations:
12+
required: true

0 commit comments

Comments
 (0)