Skip to content

Commit 436775c

Browse files
committed
ci: add issue templates for bug reports and feature requests
1 parent fa07f5c commit 436775c

2 files changed

Lines changed: 94 additions & 0 deletions

File tree

Lines changed: 52 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,52 @@
1+
name: 🐛 Bug Report
2+
description: Report a bug or unexpected behavior
3+
title: "[Bug]: "
4+
labels: ["bug"]
5+
body:
6+
- type: markdown
7+
attributes:
8+
value: |
9+
Thanks for taking the time to fill out this bug report!
10+
- type: textarea
11+
id: description
12+
attributes:
13+
label: Bug Description
14+
description: What happened?
15+
placeholder: Describe the bug...
16+
validations:
17+
required: true
18+
- type: textarea
19+
id: reproduction
20+
attributes:
21+
label: Steps to Reproduce
22+
description: How can we reproduce this?
23+
placeholder: |
24+
1. Run command '...'
25+
2. See error
26+
validations:
27+
required: true
28+
- type: textarea
29+
id: expected
30+
attributes:
31+
label: Expected Behavior
32+
description: What did you expect to happen?
33+
- type: input
34+
id: version
35+
attributes:
36+
label: Version
37+
description: What version are you running?
38+
placeholder: v1.1.1
39+
- type: dropdown
40+
id: os
41+
attributes:
42+
label: Operating System
43+
options:
44+
- Windows
45+
- macOS
46+
- Linux
47+
- type: textarea
48+
id: logs
49+
attributes:
50+
label: Relevant Log Output
51+
description: Please copy and paste any relevant log output.
52+
render: shell
Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
name: 💡 Feature Request
2+
description: Suggest an idea or enhancement
3+
title: "[Feature]: "
4+
labels: ["enhancement"]
5+
body:
6+
- type: markdown
7+
attributes:
8+
value: |
9+
Thanks for suggesting a feature!
10+
- type: textarea
11+
id: problem
12+
attributes:
13+
label: Problem Statement
14+
description: Is your feature request related to a problem?
15+
placeholder: I'm always frustrated when...
16+
- type: textarea
17+
id: solution
18+
attributes:
19+
label: Proposed Solution
20+
description: What would you like to see?
21+
placeholder: Describe the solution...
22+
validations:
23+
required: true
24+
- type: textarea
25+
id: alternatives
26+
attributes:
27+
label: Alternatives Considered
28+
description: Any alternative solutions you've considered?
29+
- type: dropdown
30+
id: priority
31+
attributes:
32+
label: Priority
33+
options:
34+
- Low
35+
- Medium
36+
- High
37+
- Critical
38+
- type: textarea
39+
id: context
40+
attributes:
41+
label: Additional Context
42+
description: Add any other context or screenshots.

0 commit comments

Comments
 (0)