Skip to content

Commit 33afb62

Browse files
committed
feat: Add issue templates
1 parent b71e648 commit 33afb62

File tree

2 files changed

+75
-0
lines changed

2 files changed

+75
-0
lines changed
Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
name: Bug Report
2+
description: File a bug report
3+
title: "[Bug]: "
4+
labels: ["bug", "triage"]
5+
assignees:
6+
- GeekMasher
7+
8+
body:
9+
- type: markdown
10+
attributes:
11+
value: |
12+
Thanks for taking the time to fill out this bug report!
13+
14+
- type: textarea
15+
id: what-happened
16+
attributes:
17+
label: What happened?
18+
description: Also tell us, what did you expect to happen?
19+
placeholder: Tell us what you see!
20+
value: "A bug happened!"
21+
validations:
22+
required: true
23+
24+
- type: dropdown
25+
id: version
26+
attributes:
27+
label: Version
28+
description: What version of our software are you running?
29+
options:
30+
- v1
31+
default: 0
32+
validations:
33+
required: true
34+
35+
- type: textarea
36+
id: logs
37+
attributes:
38+
label: Relevant log output
39+
description: Please copy and paste any relevant log output. This will be automatically formatted into code, so no need for backticks.
40+
render: shell
Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
name: Feature Request
2+
description: Feature Request
3+
title: "[Feat]: "
4+
labels: ["feature", "enhancement"]
5+
assignees:
6+
- GeekMasher
7+
8+
body:
9+
- type: markdown
10+
attributes:
11+
value: |
12+
Thanks for taking the time to fill out this feature request!
13+
14+
- type: textarea
15+
id: feature
16+
attributes:
17+
label: What new feature are you looking for / expect?
18+
description: Also tell us, what did you expect to happen?
19+
placeholder: Tell us what you see!
20+
value: "Here is my feature!"
21+
validations:
22+
required: true
23+
24+
- type: dropdown
25+
id: expectations
26+
attributes:
27+
label: Expectations
28+
description: What is your expectation of this feature request?
29+
options:
30+
- Nice to have
31+
- Opt-in Feature
32+
- Required / Mandatory Feature
33+
default: 0
34+
validations:
35+
required: true

0 commit comments

Comments
 (0)