Skip to content

Commit 1fec61b

Browse files
authored
Create bug_report.yaml (#18)
* Create bug_report.yaml * Create suggestion.yaml * Create discussion.yaml
1 parent 53d8a19 commit 1fec61b

3 files changed

Lines changed: 94 additions & 0 deletions

File tree

Lines changed: 43 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
name: "🐞 Bug Report"
2+
description: Report a problem or unexpected behavior
3+
labels: [bug]
4+
body:
5+
- type: markdown
6+
attributes:
7+
value: |
8+
Thanks for reporting a bug! Please fill out the form below.
9+
- type: input
10+
id: title
11+
attributes:
12+
label: Bug Title
13+
description: Brief summary of the issue.
14+
validations:
15+
required: true
16+
- type: textarea
17+
id: description
18+
attributes:
19+
label: Description
20+
description: Please describe the bug in detail.
21+
validations:
22+
required: true
23+
- type: textarea
24+
id: steps
25+
attributes:
26+
label: Steps to Reproduce
27+
description: List the steps to reproduce the issue.
28+
validations:
29+
required: true
30+
- type: textarea
31+
id: expected
32+
attributes:
33+
label: Expected Behavior
34+
description: What did you expect to happen?
35+
validations:
36+
required: true
37+
- type: textarea
38+
id: actual
39+
attributes:
40+
label: Actual Behavior
41+
description: What actually happened?
42+
validations:
43+
required: true
Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
name: "🗣️ Discussion"
2+
description: Start a general discussion or ask a question
3+
labels: [discussion]
4+
body:
5+
- type: markdown
6+
attributes:
7+
value: |
8+
Use this form to start a discussion or ask a question.
9+
- type: input
10+
id: topic
11+
attributes:
12+
label: Topic
13+
description: What is the topic?
14+
validations:
15+
required: true
16+
- type: textarea
17+
id: details
18+
attributes:
19+
label: Details
20+
description: Provide more information or context.
21+
validations:
22+
required: false
Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
name: "💡 Suggestion"
2+
description: Propose an improvement or new feature
3+
labels: [enhancement]
4+
body:
5+
- type: markdown
6+
attributes:
7+
value: |
8+
Thank you for your suggestion! Please complete the form below.
9+
- type: input
10+
id: title
11+
attributes:
12+
label: Suggestion Title
13+
description: Brief summary of the suggestion.
14+
validations:
15+
required: true
16+
- type: textarea
17+
id: proposal
18+
attributes:
19+
label: Suggestion Details
20+
description: Describe your suggestion or idea.
21+
validations:
22+
required: true
23+
- type: textarea
24+
id: motivation
25+
attributes:
26+
label: Motivation
27+
description: Why would this be useful?
28+
validations:
29+
required: true

0 commit comments

Comments
 (0)