Skip to content

Commit 752715b

Browse files
committed
Add issue templates
1 parent 739755f commit 752715b

5 files changed

Lines changed: 120 additions & 0 deletions

File tree

Lines changed: 44 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
name: Bug
2+
description: Report a bug in the system
3+
title: "[Bug]: <title>"
4+
labels: bug
5+
body:
6+
- type: textarea
7+
attributes:
8+
label: Description
9+
description: A clear and concise description of the bug.
10+
validations:
11+
required: true
12+
- type: textarea
13+
attributes:
14+
label: Expected behavior
15+
description: Explain what you expected to happen.
16+
validations:
17+
required: true
18+
- type: textarea
19+
attributes:
20+
label: Steps to reproduce
21+
description: Steps the reproduce the behavior.
22+
placeholder: |
23+
1. Setup ...
24+
2. Call function ...
25+
3. See exception ...
26+
validations:
27+
required: false
28+
- type: textarea
29+
attributes:
30+
label: Environment
31+
description: |
32+
examples:
33+
- **NET version**: .NET 9
34+
- **OS**: Windows 11
35+
- **Version**: v1.0.1
36+
render: markdown
37+
validations:
38+
required: false
39+
- type: textarea
40+
attributes:
41+
label: Additional context
42+
description: Add any other context about the problem here.
43+
validations:
44+
required: false

.github/ISSUE_TEMPLATE/config.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
blank_issues_enabled: false
Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
name: Documentation
2+
description: Suggest updates or additions to documentation
3+
title: "[Docs]: <title>"
4+
labels: docs
5+
body:
6+
- type: textarea
7+
attributes:
8+
label: Documentation update
9+
description: What part of the documentation needs to be updated or added?
10+
validations:
11+
required: true
12+
- type: textarea
13+
attributes:
14+
label: Why is this needed?
15+
description: Explain the importance of this update.
16+
validations:
17+
required: true
18+
- type: textarea
19+
attributes:
20+
label: Suggested changes
21+
description: Provide a detailed description of the changes.
22+
validations:
23+
required: true
24+
- type: textarea
25+
attributes:
26+
label: Additional context
27+
description: Add any other context about the problem here.
28+
validations:
29+
required: false
Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
name: Feature request
2+
description: Suggest a new feature or improvement
3+
title: "[Feature]: <title>"
4+
labels: enhancement
5+
body:
6+
- type: textarea
7+
attributes:
8+
label: Feature description
9+
description: What feature would you like to see?
10+
validations:
11+
required: true
12+
- type: textarea
13+
attributes:
14+
label: Why is this needed?
15+
description: Explain the problem or need for this feature.
16+
validations:
17+
required: true
18+
- type: textarea
19+
attributes:
20+
label: Suggested solutions
21+
description: Describe how this feature could be implemented.
22+
validations:
23+
required: false
24+
- type: textarea
25+
attributes:
26+
label: Additional context
27+
description: Add any other context about the problem here.
28+
validations:
29+
required: false
Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
name: General report
2+
description: Provide general feedback or inquiries
3+
title: "[General]: <title>"
4+
labels: general
5+
body:
6+
- type: textarea
7+
attributes:
8+
label: Feedback or inquiry
9+
description: Provide your feedback or inquiry.
10+
validations:
11+
required: true
12+
- type: textarea
13+
attributes:
14+
label: Additional context
15+
description: Add any other context about the problem here.
16+
validations:
17+
required: false

0 commit comments

Comments
 (0)