Skip to content

Commit 23f0f68

Browse files
shricodevdevxprite
andauthored
docs: Add GitHub issue template for Bug Report and Feature Request (#14)
* chore: Add CODE_OF_CONDUCT file - closes #4 * feat: Add bug_report github issue template - fixes #6 * feat: Add feature_request github issue template - fixes #6 * Delete CODE_OF_CONDUCT.md --------- Co-authored-by: Prateek <devXprite@gmail.com>
1 parent 060ba5b commit 23f0f68

File tree

2 files changed

+103
-0
lines changed

2 files changed

+103
-0
lines changed
Lines changed: 66 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,66 @@
1+
name: Bug Report
2+
description: File a bug report. It will help us improve the project.
3+
title: "[Bug]: "
4+
labels: ["bug", "triage"]
5+
body:
6+
- type: markdown
7+
attributes:
8+
value: |
9+
Thanks for taking the time to fill out this bug report!
10+
- type: input
11+
id: contact
12+
attributes:
13+
label: Contact Details
14+
description: How can we get in touch with you if we need more info?
15+
placeholder: ex. email@example.com
16+
validations:
17+
required: false
18+
- type: textarea
19+
id: description
20+
attributes:
21+
label: Description
22+
description: A brief description of the issue or bug you are facing, also include what you tried and what didn't work.
23+
validations:
24+
required: true
25+
- type: textarea
26+
id: additional-info
27+
attributes:
28+
label: Any additional information?
29+
description: Any additional information or Is there anything we should know about this bug?
30+
validations:
31+
required: false
32+
- type: textarea
33+
id: steps-to-reproduce
34+
attributes:
35+
label: Steps to reproduce the bug.
36+
description: Please provide the step by step instructions on how to reproduce the bug.
37+
placeholder: Provide the steps in points.
38+
validations:
39+
required: false
40+
- type: dropdown
41+
id: browsers
42+
attributes:
43+
label: What browsers are you seeing the problem on?
44+
multiple: true
45+
options:
46+
- Firefox
47+
- Chrome
48+
- Safari
49+
- Microsoft Edge
50+
- type: textarea
51+
id: logs
52+
attributes:
53+
label: Relevant log output.
54+
description: Please copy and paste any relevant log output. This will be automatically formatted into code, so no need for backticks.
55+
render: shell
56+
validations:
57+
required: false
58+
- type: checkboxes
59+
id: terms
60+
attributes:
61+
label: Code of Conduct
62+
description: By submitting this issue, you agree to follow our [Code of Conduct](https://github.com/devXprite/gitglance/blob/main/CODE_OF_CONDUCT.md).
63+
options:
64+
- label: I agree to follow this project's Code of Conduct.
65+
required: true
66+
Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
name: Feature Request
2+
description: Have any new idea or feature? Please suggest!
3+
title: "[Feature]: "
4+
labels: ["enhancement"]
5+
body:
6+
- type: markdown
7+
attributes:
8+
value: |
9+
Thanks for taking the time to fill out this feature request form!
10+
- type: textarea
11+
id: description
12+
attributes:
13+
label: Description
14+
description: A clear and concise description of any alternative solution or features you've considered.
15+
validations:
16+
required: true
17+
- type: textarea
18+
id: motive
19+
attributes:
20+
label: Why implement this feature?
21+
description: What problem is this feature trying to solve?
22+
validations:
23+
required: true
24+
- type: textarea
25+
id: additional-info
26+
attributes:
27+
label: Any additional information?
28+
description: Anything else you want to describe about?
29+
validations:
30+
required: false
31+
- type: checkboxes
32+
id: conditions
33+
attributes:
34+
label: Checklist
35+
options:
36+
- label: I have checked the existing issues and made sure that this is not a duplicate feature request form.
37+
required: true

0 commit comments

Comments
 (0)