Skip to content

Commit 79cecc8

Browse files
committed
issue templates
1 parent 7f844fd commit 79cecc8

3 files changed

Lines changed: 136 additions & 0 deletions

File tree

.github/ISSUE_TEMPLATE/bug.yml

Lines changed: 62 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,62 @@
1+
name: Bug report
2+
description: Report a bug or unexpected behavior
3+
title: "[Bug]: "
4+
labels: ["bug"]
5+
6+
body:
7+
- type: textarea
8+
id: description
9+
attributes:
10+
label: Description
11+
description: A clear and concise description of the bug.
12+
placeholder: What happened?
13+
validations:
14+
required: true
15+
16+
- type: textarea
17+
id: steps
18+
attributes:
19+
label: Steps to reproduce
20+
description: How can we reproduce the issue?
21+
placeholder: |
22+
1. Go to ...
23+
2. Click on ...
24+
3. See error ...
25+
validations:
26+
required: true
27+
28+
- type: textarea
29+
id: expected
30+
attributes:
31+
label: Expected behavior
32+
description: What did you expect to happen?
33+
validations:
34+
required: true
35+
36+
- type: textarea
37+
id: actual
38+
attributes:
39+
label: Actual behavior
40+
description: What actually happened?
41+
validations:
42+
required: true
43+
44+
- type: textarea
45+
id: environment
46+
attributes:
47+
label: Environment
48+
description: Provide details about your setup.
49+
placeholder: |
50+
- OS:
51+
- Version / commit:
52+
- Dependencies:
53+
validations:
54+
required: false
55+
56+
- type: textarea
57+
id: logs
58+
attributes:
59+
label: Logs / Screenshots
60+
description: Add logs, screenshots, or other helpful context.
61+
validations:
62+
required: false

.github/ISSUE_TEMPLATE/feature.yml

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 or improvement
3+
title: "[Feature]: "
4+
labels: ["enhancement"]
5+
6+
body:
7+
- type: textarea
8+
id: problem
9+
attributes:
10+
label: Problem / Motivation
11+
description: What problem does this solve?
12+
placeholder: Describe the problem you're facing...
13+
validations:
14+
required: true
15+
16+
- type: textarea
17+
id: solution
18+
attributes:
19+
label: Proposed solution
20+
description: What would you like to see happen?
21+
placeholder: Describe your ideal solution...
22+
validations:
23+
required: true
24+
25+
- type: textarea
26+
id: alternatives
27+
attributes:
28+
label: Alternatives considered
29+
description: Have you considered any alternative solutions?
30+
validations:
31+
required: false
32+
33+
- type: textarea
34+
id: context
35+
attributes:
36+
label: Additional context
37+
description: Add any other context, mockups, or examples.
38+
validations:
39+
required: false

.github/ISSUE_TEMPLATE/support.yml

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
name: Question / support
2+
description: Ask a question or get help
3+
title: "[Question]: "
4+
labels: ["question"]
5+
6+
body:
7+
- type: textarea
8+
id: question
9+
attributes:
10+
label: Your question
11+
description: What do you need help with?
12+
placeholder: Ask your question...
13+
validations:
14+
required: true
15+
16+
- type: textarea
17+
id: context
18+
attributes:
19+
label: Context
20+
description: Provide any relevant details, code snippets, or background.
21+
validations:
22+
required: false
23+
24+
- type: textarea
25+
id: environment
26+
attributes:
27+
label: Environment (if relevant)
28+
description: |
29+
Provide details if your question is environment-specific.
30+
placeholder: |
31+
- OS:
32+
- Version / commit:
33+
- Dependencies:
34+
validations:
35+
required: false

0 commit comments

Comments
 (0)