Skip to content

Commit 55999d1

Browse files
committed
Added issue templates to the repository
1 parent 0c5d247 commit 55999d1

3 files changed

Lines changed: 89 additions & 0 deletions

File tree

Lines changed: 57 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,57 @@
1+
name: 🐞 Bug Report
2+
description: Create a bug report to help us improve
3+
title: "bug: "
4+
labels: ["🐞 unconfirmed bug"]
5+
body:
6+
- type: textarea
7+
attributes:
8+
label: Provide environment information
9+
description: |
10+
Run this command in your project root and paste the results:
11+
```bash
12+
npx envinfo --system --binaries
13+
```
14+
15+
validations:
16+
required: true
17+
- type: textarea
18+
attributes:
19+
label: Describe the bug
20+
description: A clear and concise description of the bug, as well as what you expected to happen when encountering it.
21+
validations:
22+
required: true
23+
- type: input
24+
attributes:
25+
label: Reproduction repo
26+
description: If applicable, please provide a link to a reproduction repo or a Stackblitz / CodeSandbox project. Your issue may be closed if this is not provided and we are unable to reproduce the issue.
27+
- type: textarea
28+
attributes:
29+
label: Expected behavior
30+
description: A clear and concise description of what you expected to happen.
31+
validations:
32+
required: true
33+
- type: textarea
34+
attributes:
35+
label: Actual behavior
36+
description: A clear and concise description of what actually happened.
37+
validations:
38+
required: true
39+
- type: textarea
40+
attributes:
41+
label: Steps to reproduce
42+
description: Steps to reproduce the behavior.
43+
placeholder: |
44+
1. Go to '...'
45+
2. Click on '....'
46+
3. Scroll down to '....'
47+
4. See error
48+
validations:
49+
required: true
50+
- type: textarea
51+
attributes:
52+
label: Screenshots
53+
description: If applicable, add screenshots to help explain your problem.
54+
- type: textarea
55+
attributes:
56+
label: Additional context
57+
description: Add any other context about the problem here.

.github/ISSUE_TEMPLATE/config.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
blank_issues_enabled: false
2+
contact_links:
3+
- name: Ask a Question
4+
url: https://discord.gg/uZ39dxhj
5+
about: Ask questions and discuss with other community members
Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
name: Feature Request
2+
description: Suggest an idea for this project
3+
title: "feat: "
4+
labels: ["🌟 enhancement"]
5+
body:
6+
- type: textarea
7+
attributes:
8+
label: Is your feature request related to a problem? Please describe.
9+
description: A clear and concise description of what the problem is.
10+
validations:
11+
required: true
12+
- type: textarea
13+
attributes:
14+
label: Describe the solution you'd like to see
15+
description: A clear and concise description of what you want to happen.
16+
validations:
17+
required: true
18+
- type: textarea
19+
attributes:
20+
label: Describe alternate solutions
21+
description: A clear and concise description of any alternative solutions or features you've considered.
22+
validations:
23+
required: true
24+
- type: textarea
25+
attributes:
26+
label: Additional information
27+
description: Add any other information related to the feature here. If your feature request is related to any issues or discussions, link them here.

0 commit comments

Comments
 (0)