Skip to content

Commit 37ef79a

Browse files
committed
🎡 ci: add GitHub Issues Template
1 parent fc9fd0c commit 37ef79a

File tree

3 files changed

+81
-0
lines changed

3 files changed

+81
-0
lines changed

.github/ISSUE_TEMPLATE/bug_report.yml

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
name: "🐛 Bug Report"
2+
description: Create a bug/issue report
3+
title: "🐛 Bug: "
4+
labels: [bug]
5+
assignees: [jacquindev]
6+
body:
7+
- type: markdown
8+
attributes:
9+
value: |
10+
Thanks for taking the time to fill out this bug report!
11+
12+
- type: checkboxes
13+
attributes:
14+
label: Did you check existing issues?
15+
description: Make sure that you checked all of the below before submitting an issue to avoid duplicates
16+
options:
17+
- label: I have searched for existing issues
18+
required: true
19+
20+
- type: textarea
21+
id: description
22+
attributes:
23+
label: Description of a bug
24+
description: Describe the bug in detail. Include screenshots if possible.
25+
placeholder: A clear and concise description of what the bug is.
26+
validations:
27+
required: true
28+
29+
- type: textarea
30+
id: screenshot
31+
attributes:
32+
label: Screenshots
33+
description: If needed, add screenshots to help explain your problem.
34+
validations:
35+
required: false

.github/ISSUE_TEMPLATE/config.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
---
2+
blank_issues_enabled: false
3+
contact_links:
4+
- name: Ask a question
5+
url: https://github.com/jacquindev/windots/discussions/new/choose
6+
about: Use GitHub Discussions instead.
Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
name: "💡 Feature Request"
2+
description: Suggest a new feature request
3+
title: "💡 Feature: "
4+
labels: [enhancement]
5+
body:
6+
- type: checkboxes
7+
attributes:
8+
label: Did you check existing feature request?
9+
description: Make sure you checked all of the below before submitting a request to avoid duplicates
10+
options:
11+
- label: I have searched the existing requests of the repo
12+
required: true
13+
14+
- type: textarea
15+
attributes:
16+
label: Is your feature request related to a problem? Please describe.
17+
description: A clear description of what the problem is.
18+
validations:
19+
required: true
20+
21+
- type: textarea
22+
attributes:
23+
label: Describe the solution you'd like
24+
description: A clear description of what you want to happen.
25+
validations:
26+
required: true
27+
28+
- type: textarea
29+
attributes:
30+
label: Describe alternatives you've considered
31+
description: A clear description of any alternative solutions or features you've considered. Here you can include pull request links if needed.
32+
validations:
33+
required: true
34+
35+
- type: textarea
36+
attributes:
37+
label: Additional Context
38+
description: Add any other context or screenshots about the feature request here. Here you can include issue links if needed.
39+
validations:
40+
required: false

0 commit comments

Comments
 (0)