Skip to content

Commit e065f22

Browse files
authored
Merge pull request #17838 from grokability/issue-form
New GH issue form
2 parents 40495b8 + c1b4ba1 commit e065f22

File tree

1 file changed

+96
-0
lines changed

1 file changed

+96
-0
lines changed

.github/ISSUE_TEMPLATE.yml

Lines changed: 96 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,96 @@
1+
name: Bug Report
2+
description: File a bug report.
3+
title: "[Bug]: "
4+
projects: ["grokability/snipe-it"]
5+
type: bug
6+
body:
7+
- type: markdown
8+
attributes:
9+
value: |
10+
Thanks for taking the time to fill out this bug report! Most issues are documented in the [Snipe-IT repository's issues](https://github.com/grokability/snipe-it/issues) or in the official [Common Issues section of the Documentation](https://snipe-it.readme.io/docs/common-issues#/) and are due to the following:
11+
12+
- `.env` misconfiguration
13+
- [Server Permissions](https://snipe-it.readme.io/docs/debugging-permissions#/)
14+
- [Database Migrations](https://snipe-it.readme.io/docs/database-issues#run-migrations)
15+
16+
Please make sure you've checked these resources before submitting a new issue.
17+
- type: input
18+
id: version
19+
attributes:
20+
label: Snipe-IT Version
21+
description: What version of Snipe-IT are you seeing this issue on? You can find the version number in the footer of any page in Snipe-IT.
22+
placeholder: ex. v8.3.1 - build 19577 (master)
23+
validations:
24+
required: true
25+
- type: input
26+
id: db-version
27+
attributes:
28+
label: MySQL/MariaDB version
29+
description: What database are you using, and what version?
30+
placeholder: ex. MySQL 5.7
31+
validations:
32+
required: true
33+
- type: dropdown
34+
id: install-method
35+
attributes:
36+
label: How did you install Snipe-IT?
37+
options:
38+
- Git install
39+
- Manual install (downloading zip/tar.gz)
40+
- Docker
41+
- install.sh
42+
- Other
43+
- type: textarea
44+
id: what-happened
45+
attributes:
46+
label: What happened?
47+
description: Also tell us, what did you expect to happen?
48+
placeholder: Tell us what you see!
49+
value: "A bug happened!"
50+
validations:
51+
required: true
52+
- type: dropdown
53+
id: browsers
54+
attributes:
55+
label: What browsers are you seeing the problem on?
56+
multiple: true
57+
options:
58+
- Firefox
59+
- Chrome
60+
- Safari
61+
- Microsoft Edge
62+
- Other
63+
- type: textarea
64+
id: server-logs
65+
attributes:
66+
label: Application log output
67+
description: Please copy and paste any relevant log output from `storage/logs/laravel.log`. This will be automatically formatted into code, so no need for backticks.
68+
render: shell
69+
- type: textarea
70+
id: browser-logs
71+
attributes:
72+
label: Browser console output
73+
description: Please copy and paste any relevant log output from your browser console. This will be automatically formatted into code, so no need for backticks.
74+
render: shell
75+
- type: checkboxes
76+
id: common-issues
77+
attributes:
78+
label: Common Issues
79+
description: Please make sure you have done the following before submitting your issue.
80+
options:
81+
- label: I have searched this repo for existing issues related to my issue (including closed issues)
82+
required: true
83+
- label: My APP_URL is set correctly in my .env file (including http or https and no trailing slash)
84+
required: true
85+
- label: I have searched the official Snipe-IT documentation and have checked the Common Issues documentation (where applicable)
86+
required: true
87+
- label: I have run database migrations (where applicable).
88+
required: true
89+
- type: checkboxes
90+
id: terms
91+
attributes:
92+
label: Code of Conduct
93+
description: By submitting this issue, you agree to follow our [Code of Conduct](https://github.com/grokability/snipe-it/blob/master/CODE_OF_CONDUCT.md).
94+
options:
95+
- label: I agree to follow this project's Code of Conduct
96+
required: true

0 commit comments

Comments
 (0)