Skip to content

Commit 3ac47e2

Browse files
authored
Create issue_report.yml
First draft of generic issue form.
1 parent 225b984 commit 3ac47e2

File tree

1 file changed

+69
-0
lines changed

1 file changed

+69
-0
lines changed
Lines changed: 69 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,69 @@
1+
name: Issue Report
2+
description: Report a bug, request a feature, or ask a question
3+
title: "[Issue]: "
4+
labels: []
5+
assignees: []
6+
7+
body:
8+
- type: markdown
9+
attributes:
10+
value: "### Thank you for contributing! Please select the type of issue."
11+
12+
- type: dropdown
13+
id: issue_type
14+
attributes:
15+
label: "Issue Type"
16+
description: "What kind of issue are you reporting?"
17+
options:
18+
- Bug
19+
- Feature
20+
- Documentation
21+
- Question
22+
- Idea
23+
- Task
24+
validations:
25+
required: true
26+
27+
- type: input
28+
id: summary
29+
attributes:
30+
label: "Issue Summary"
31+
description: "Briefly describe the issue or feature request."
32+
placeholder: "e.g., App crashes when opening settings"
33+
validations:
34+
required: true
35+
36+
- type: textarea
37+
id: description
38+
attributes:
39+
label: "Description"
40+
description: "Provide details about the issue or request."
41+
placeholder: "Explain the problem or feature in detail."
42+
validations:
43+
required: true
44+
45+
- type: textarea
46+
id: steps
47+
attributes:
48+
label: "Steps to Reproduce (for Bugs)"
49+
description: "List the steps to reproduce the issue (if applicable)."
50+
placeholder: |
51+
1. Go to '...'
52+
2. Click on '...'
53+
3. See error"
54+
validations:
55+
required: false
56+
57+
- type: textarea
58+
id: expected_behavior
59+
attributes:
60+
label: "Expected Behavior"
61+
description: "What should happen instead?"
62+
placeholder: "Describe what you expected to happen."
63+
64+
- type: textarea
65+
id: additional_info
66+
attributes:
67+
label: "Additional Information"
68+
description: "Any extra context or screenshots?"
69+
placeholder: "Paste logs, screenshots, or links here."

0 commit comments

Comments
 (0)