Skip to content

Commit c24865e

Browse files
committed
chore: added issue templates
1 parent a16f3ed commit c24865e

File tree

3 files changed

+71
-0
lines changed

3 files changed

+71
-0
lines changed

.github/ISSUE_TEMPLATE/bug_report.yml

Lines changed: 41 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
name: "🐛 Bug Report"
2+
description: Create a new ticket for a bug.
3+
title: "🐛 [BUG] - <title>"
4+
labels: ["bug"]
5+
body:
6+
- type: markdown
7+
attributes:
8+
value: "## Thanks for filing this out ❤️!"
9+
- type: textarea
10+
id: description
11+
attributes:
12+
label: "Description"
13+
placeholder: Short and explicit description of your incident...
14+
validations:
15+
required: true
16+
- type: textarea
17+
id: reproduction
18+
attributes:
19+
label: "Reproduction steps"
20+
placeholder: How can we reproduce the issue?
21+
validations:
22+
required: false
23+
- type: dropdown
24+
id: os
25+
attributes:
26+
label: "OS"
27+
description: What is the impacted environment?
28+
multiple: true
29+
options:
30+
- Windows
31+
- Linux
32+
- Mac
33+
validations:
34+
required: false
35+
- type: textarea
36+
id: additional_context
37+
attributes:
38+
label: "Additional context"
39+
placeholder: Provide any additional information.
40+
validations:
41+
required: false

.github/ISSUE_TEMPLATE/config.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
blank_issues_enabled: true
Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
name: "💡 Feature Request"
2+
description: Create a new ticket for a new feature request
3+
title: "💡 [REQUEST] - <title>"
4+
labels: ["enhancement"]
5+
body:
6+
- type: markdown
7+
attributes:
8+
value: "## Thanks for filing this out ❤️!"
9+
- type: textarea
10+
id: summary
11+
attributes:
12+
label: "Summary"
13+
placeholder: Provide a brief explanation of the feature...
14+
validations:
15+
required: true
16+
- type: textarea
17+
id: basic_example
18+
attributes:
19+
label: "Basic Example"
20+
placeholder: Provide a basic example of how the feature would work...
21+
validations:
22+
required: false
23+
- type: textarea
24+
id: additional_context
25+
attributes:
26+
label: "Additional context"
27+
placeholder: Provide any additional information.
28+
validations:
29+
required: false

0 commit comments

Comments
 (0)