Skip to content

Commit 97d8e9e

Browse files
Merge pull request #18 from BHChen24/feat/add-issue-templates
feat: add issue templates
2 parents dcb2715 + 742d926 commit 97d8e9e

2 files changed

Lines changed: 109 additions & 0 deletions

File tree

Lines changed: 70 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,70 @@
1+
name: Bug Report
2+
description: Report a bug
3+
labels: ["bug"]
4+
body:
5+
6+
- type: textarea
7+
id: description
8+
attributes:
9+
label: Bug Description
10+
description: Clear description of the bug
11+
validations:
12+
required: true
13+
14+
- type: textarea
15+
id: env
16+
attributes:
17+
label: Environment
18+
description: The environment you were using when the bug occurred
19+
placeholder: |
20+
- OS:
21+
- Browser:
22+
- Version:
23+
- Other:
24+
validations:
25+
required: true
26+
27+
- type: textarea
28+
id: reproduction
29+
attributes:
30+
label: Steps to Reproduce
31+
placeholder: |
32+
1.
33+
2.
34+
3.
35+
validations:
36+
required: true
37+
38+
- type: textarea
39+
id: actual
40+
attributes:
41+
label: Actual Behavior
42+
description: What actually happened?
43+
validations:
44+
required: true
45+
46+
- type: textarea
47+
id: expected
48+
attributes:
49+
label: Expected Behavior
50+
description: What should have happened?
51+
validations:
52+
required: true
53+
54+
- type: textarea
55+
id: logs
56+
attributes:
57+
label: Logs / Screenshots
58+
description: Add error logs or screenshots if available
59+
placeholder: |
60+
Paste logs here or drag & drop images
61+
validations:
62+
required: false
63+
64+
- type: textarea
65+
id: context
66+
attributes:
67+
label: Additional Context
68+
description: Any additional information that might help us diagnose the issue
69+
validations:
70+
required: false
Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
name: Feature Request
2+
description: Suggest a new feature
3+
labels: ["enhancement"]
4+
body:
5+
6+
7+
- type: textarea
8+
id: problem
9+
attributes:
10+
label: Problem Statement
11+
description: Is your feature request related to a problem?
12+
placeholder: "Example: I'm frustrated when... / It would be helpful if..."
13+
validations:
14+
required: true
15+
16+
- type: textarea
17+
id: solution
18+
attributes:
19+
label: Possible Solution
20+
description: Describe the solution you'd like to see
21+
placeholder: "Example: I would like to be able to... / The feature should..."
22+
validations:
23+
required: false
24+
25+
- type: textarea
26+
id: alternatives
27+
attributes:
28+
label: Alternatives Considered
29+
description: Have you considered any alternative solutions or workarounds?
30+
validations:
31+
required: false
32+
33+
- type: textarea
34+
id: context
35+
attributes:
36+
label: Additional Context
37+
description: Add any other context, screenshots, mockups, or examples
38+
validations:
39+
required: false

0 commit comments

Comments
 (0)