Skip to content

Commit f0579e7

Browse files
committed
Added issues template
1 parent a9081af commit f0579e7

File tree

5 files changed

+219
-83
lines changed

5 files changed

+219
-83
lines changed

.github/ISSUE_TEMPLATE/bug_report.md

Lines changed: 0 additions & 45 deletions
This file was deleted.
Lines changed: 97 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,97 @@
1+
name: 🐞 Bug Report
2+
description: File a bug report
3+
title: "[Bug]: "
4+
labels: ["bug", "triage"]
5+
assignees:
6+
- Elius94
7+
body:
8+
- type: markdown
9+
attributes:
10+
value: |
11+
Thanks for taking the time to fill out this bug report!
12+
- type: textarea
13+
id: what-happened
14+
attributes:
15+
label: What happened?
16+
description: Tell us, what did you expect to happen?
17+
placeholder: Tell us what you see!
18+
value: "A bug happened!"
19+
validations:
20+
required: true
21+
- type: textarea
22+
id: what-should-happen
23+
attributes:
24+
label: What should have happened?
25+
description: Tell us, what did you expect to happen?
26+
placeholder: Tell us what you expected!
27+
value: "A bug happened!"
28+
validations:
29+
required: true
30+
- type: textarea
31+
id: code
32+
attributes:
33+
label: Code
34+
description: Please provide a code that you are trying to run
35+
placeholder: |
36+
```js
37+
// Your code here
38+
```
39+
validations:
40+
required: false
41+
- type: textarea
42+
id: sandbox-link
43+
attributes:
44+
label: Sandbox Link
45+
description: Please provide a link to a sandbox that reproduces the issue
46+
placeholder: https://codesandbox.io/s/...
47+
validations:
48+
required: false
49+
- type: textarea
50+
id: version
51+
attributes:
52+
label: Library Version
53+
description: What version of the lib are you using?
54+
placeholder: "latest"
55+
validations:
56+
required: true
57+
- type: dropdown
58+
id: os
59+
attributes:
60+
label: What operating system are you using?
61+
options:
62+
- Windows
63+
- macOS
64+
- Ubuntu
65+
- Other Linux
66+
- Other
67+
validations:
68+
required: true
69+
- type: dropdown
70+
id: browser
71+
attributes:
72+
label: What browser are you using?
73+
options:
74+
- Chrome
75+
- Firefox
76+
- Safari
77+
- Edge
78+
- Other
79+
- type: textarea
80+
id: logs
81+
attributes:
82+
label: Logs
83+
description: Please provide logs
84+
placeholder: |
85+
```log
86+
// Your logs here
87+
```
88+
validations:
89+
required: false
90+
- type: checkboxes
91+
id: terms
92+
attributes:
93+
label: Interest to fix the bug
94+
description: Are you interested in fixing this bug?
95+
options:
96+
- label: I would like to fix this bug!
97+
required: false

.github/ISSUE_TEMPLATE/feature_request.md

Lines changed: 0 additions & 38 deletions
This file was deleted.
Lines changed: 44 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
name: 🚀 Feature Request
2+
description: Suggest an idea for this project
3+
title: "[Feature]: "
4+
labels: ["enhancement", "triage"]
5+
body:
6+
- type: markdown
7+
attributes:
8+
value: |
9+
Thanks for taking the time to suggest a new feature!
10+
- type: textarea
11+
id: what-do-you-want
12+
attributes:
13+
label: What do you want?
14+
description: Tell us, what do you want to happen?
15+
placeholder: Tell us what you want!
16+
value: "A new feature!"
17+
validations:
18+
required: true
19+
- type: textarea
20+
id: why-do-you-want
21+
attributes:
22+
label: Why do you want it?
23+
description: Tell us, why do you want this feature?
24+
placeholder: Tell us why you want this feature!
25+
value: "A new feature!"
26+
validations:
27+
required: true
28+
- type: textarea
29+
id: how-do-you-implement-it
30+
attributes:
31+
label: How do you implement it?
32+
description: Tell us, how do you want to implement this feature?
33+
placeholder: Tell us how you want to implement this feature!
34+
value: "A new feature!"
35+
validations:
36+
required: false
37+
- type: checkboxes
38+
id: interest-to-develop
39+
attributes:
40+
label: Are you interested in developing this feature?
41+
description: Tell us, if you are interested in developing this feature
42+
options:
43+
- label: Yes, I am interested in developing this feature
44+
- label: No, I am not interested in developing this feature
Lines changed: 78 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,78 @@
1+
name: 📖 Support Request
2+
description: Request support for this project
3+
title: "[Support]: "
4+
labels: ["question", "triage"]
5+
body:
6+
- type: markdown
7+
attributes:
8+
value: |
9+
Thanks for taking the time to request support for this project!
10+
- type: textarea
11+
id: what-do-you-want
12+
attributes:
13+
label: What are you trying to do?
14+
description: Tell us, what do you want to happen?
15+
placeholder: Tell us what you want!
16+
value: "To get support!"
17+
validations:
18+
required: true
19+
- type: textarea
20+
id: code
21+
attributes:
22+
label: Code
23+
description: Please provide a code that you are trying to run
24+
placeholder: |
25+
```js
26+
// Your code here
27+
```
28+
validations:
29+
required: false
30+
- type: textarea
31+
id: sandbox-link
32+
attributes:
33+
label: Sandbox Link
34+
description: Please provide a link to a sandbox that reproduces the issue
35+
placeholder: https://codesandbox.io/s/...
36+
validations:
37+
required: false
38+
- type: textarea
39+
id: version
40+
attributes:
41+
label: Library Version
42+
description: What version of the lib are you using?
43+
placeholder: "latest"
44+
validations:
45+
required: true
46+
- type: dropdown
47+
id: os
48+
attributes:
49+
label: What operating system are you using?
50+
options:
51+
- Windows
52+
- macOS
53+
- Ubuntu
54+
- Other Linux
55+
- Other
56+
validations:
57+
required: true
58+
- type: dropdown
59+
id: browser
60+
attributes:
61+
label: What browser are you using?
62+
options:
63+
- Chrome
64+
- Firefox
65+
- Safari
66+
- Edge
67+
- Other
68+
- type: textarea
69+
id: logs
70+
attributes:
71+
label: Logs
72+
description: Please provide logs
73+
placeholder: |
74+
```log
75+
// Your logs here
76+
```
77+
validations:
78+
required: false

0 commit comments

Comments
 (0)