Skip to content

Commit 3b144ea

Browse files
authored
Merge pull request #8 from Panquesito7/issue_forms
feat: Add bug report and feature request issue forms
2 parents 803ee0a + 15afe77 commit 3b144ea

File tree

2 files changed

+100
-0
lines changed

2 files changed

+100
-0
lines changed
Lines changed: 67 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,67 @@
1+
name: Bug report
2+
description: Create a report to help us improve
3+
title: "[BUG] <description>"
4+
labels: [bug]
5+
body:
6+
- type: textarea
7+
id: bugdescription
8+
attributes:
9+
label: Description of the bug
10+
description: A clear and concise description of what the bug is.
11+
validations:
12+
required: true
13+
- type: textarea
14+
id: steps
15+
attributes:
16+
label: Steps to reproduce
17+
description: Steps to reproduce the behavior
18+
placeholder: |
19+
1. Verify
20+
2. Complete
21+
3. Run tests
22+
4. Approve
23+
5. Merge
24+
validations:
25+
required: true
26+
- type: textarea
27+
id: expectedbhv
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+
id: screenshots
35+
attributes:
36+
label: Screenshots (if applicable)
37+
description: If applicable, add screenshots to help explain your problem.
38+
validations:
39+
required: false
40+
- type: textarea
41+
id: desktop
42+
attributes:
43+
label: Desktop (please complete the information in the place holder)
44+
placeholder: |
45+
- OS: [e.g.: Windows]
46+
- Browser [e.g.: Chrome, Safari]
47+
- Version [e.g.: 91]
48+
validations:
49+
required: true
50+
- type: textarea
51+
id: smartphone
52+
attributes:
53+
label: Smartphone (please complete the information in the place holder)
54+
placeholder: |
55+
- Device: [e.g.: iPhone6]
56+
- OS: [e.g. iOS8.1]
57+
- Browser [e.g.: Chrome, Safari]
58+
- Version [e.g.: 91]
59+
validations:
60+
required: true
61+
- type: textarea
62+
id: extrainfo
63+
attributes:
64+
label: Additional context
65+
description: Add any other context about the problem here.
66+
validations:
67+
required: false
Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
name: Feature request
2+
description: Suggest an idea for this project
3+
title: "[FEATURE] <description>"
4+
labels: [enhancement]
5+
body:
6+
- type: textarea
7+
id: description
8+
attributes:
9+
label: Is your feature request related to a problem? Please describe.
10+
description: A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]
11+
validations:
12+
required: true
13+
- type: textarea
14+
id: solution
15+
attributes:
16+
label: Describe the solution you'd like
17+
description: A clear and concise description of what you want to happen.
18+
validations:
19+
required: true
20+
- type: textarea
21+
id: alternatives
22+
attributes:
23+
label: Describe alternatives you've considered
24+
description: A clear and concise description of any alternative solutions or features you've considered.
25+
validations:
26+
required: false
27+
- type: textarea
28+
id: extrainfo
29+
attributes:
30+
label: Additional context
31+
description: Add any other context about the feature request here.
32+
validations:
33+
required: false

0 commit comments

Comments
 (0)