Skip to content

Commit 34e3722

Browse files
committed
chore: 📝 add issue and pull request templates
1 parent ddb654b commit 34e3722

File tree

5 files changed

+92
-86
lines changed

5 files changed

+92
-86
lines changed

.github/ISSUE_TEMPLATE/bug-report.yml

+62
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,62 @@
1+
name: 🐛 Bug Report
2+
description: Create a report to help us improve
3+
labels: [bug]
4+
5+
body:
6+
- type: markdown
7+
attributes:
8+
value: Thanks for taking the time to fill out this bug report!
9+
10+
- type: textarea
11+
id: description
12+
attributes:
13+
label: Describe the bug
14+
description: Provide a detailed description of the bug
15+
validations:
16+
required: true
17+
18+
- type: textarea
19+
id: reproduce
20+
attributes:
21+
label: To Reproduce
22+
description: Steps to reproduce the behavior
23+
placeholder: |
24+
1. Go to '...'
25+
2. Click on '...'
26+
3. Scroll down to '...'
27+
4. See error
28+
validations:
29+
required: true
30+
31+
- type: textarea
32+
id: expected
33+
attributes:
34+
label: Expected behavior
35+
description: What you expected to happen
36+
validations:
37+
required: true
38+
39+
- type: textarea
40+
id: screenshots
41+
attributes:
42+
label: Screenshots
43+
description: Add screenshots if applicable
44+
validations:
45+
required: false
46+
47+
- type: textarea
48+
id: additional-context
49+
attributes:
50+
label: Additional context
51+
description: Additional context about the problem.
52+
validations:
53+
required: false
54+
55+
- type: checkboxes
56+
id: terms
57+
attributes:
58+
label: Code of Conduct
59+
description: By submitting this issue, you agree to follow our [Code of Conduct](../../CODE_OF_CONDUCT.md).
60+
options:
61+
- label: I agree to follow this project's **Code of Conduct**
62+
required: true

.github/ISSUE_TEMPLATE/bug_report.yml

-51
This file was deleted.
+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
name: 🚀 Feature Request
2+
description: Suggest an idea, feature, or enhancement
3+
labels: [enhancement]
4+
5+
body:
6+
- type: markdown
7+
attributes:
8+
value: Thank you for submitting an idea
9+
- type: textarea
10+
attributes:
11+
label: What is the problem this feature would solve?
12+
validations:
13+
required: true
14+
- type: textarea
15+
attributes:
16+
label: What is the feature you are proposing to solve the problem?
17+
validations:
18+
required: true
19+
- type: textarea
20+
attributes:
21+
label: What alternatives have you considered?

.github/ISSUE_TEMPLATE/feature_request.yml

-35
This file was deleted.

.github/pull_request_template.md

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
### Description
2+
3+
<!-- Describe your changes in detail -->
4+
5+
### Related Issue
6+
7+
<!-- If this PR is related to an issue, please link it here -->
8+
9+
This PR closes #<issue_number>

0 commit comments

Comments
 (0)