Skip to content

Commit ff16edb

Browse files
committed
Add issue forms
1 parent 1308ee6 commit ff16edb

File tree

3 files changed

+120
-0
lines changed

3 files changed

+120
-0
lines changed

.github/ISSUE_TEMPLATE/Bug Report.yml

+65
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,65 @@
1+
name: 🐞 Report a bug
2+
description: Have you found a bug or issue? Create a bug report for this sample
3+
4+
body:
5+
- type: markdown
6+
attributes:
7+
value: |
8+
**Please do not report security vulnerabilities here**. The [Responsible Disclosure Program](https://auth0.com/responsible-disclosure-policy) details the procedure for disclosing security issues.
9+
10+
- type: checkboxes
11+
id: checklist
12+
attributes:
13+
label: Checklist
14+
options:
15+
- label: I have looked into the [Readme](https://github.com/auth0-samples/auth0-react-samples/tree/master/Sample-01#readme) and have not found a suitable solution or answer.
16+
required: true
17+
- label: I have searched the [issues](https://github.com/auth0-samples/auth0-react-samples/issues) and have not found a suitable solution or answer.
18+
required: true
19+
- label: I have searched the [Auth0 Community](https://community.auth0.com) forums and have not found a suitable solution or answer.
20+
required: true
21+
- label: I agree to the terms within the [Auth0 Code of Conduct](https://github.com/auth0/open-source-template/blob/master/CODE-OF-CONDUCT.md).
22+
required: true
23+
24+
- type: textarea
25+
id: description
26+
attributes:
27+
label: Description
28+
description: Provide a clear and concise description of the issue, including what you expected to happen.
29+
validations:
30+
required: true
31+
32+
- type: textarea
33+
id: reproduction
34+
attributes:
35+
label: Reproduction
36+
description: Detail the steps taken to reproduce this error, and whether this issue can be reproduced consistently or if it is intermittent.
37+
placeholder: |
38+
1. Step 1...
39+
2. Step 2...
40+
3. ...
41+
validations:
42+
required: true
43+
44+
- type: textarea
45+
id: additional-context
46+
attributes:
47+
label: Additional context
48+
description: Any other relevant information you think would be useful.
49+
validations:
50+
required: false
51+
52+
- type: dropdown
53+
id: environment-browser
54+
attributes:
55+
label: Which browsers have you tested in?
56+
multiple: true
57+
options:
58+
- Chrome
59+
- Edge
60+
- Safari
61+
- Firefox
62+
- Opera
63+
- Other
64+
validations:
65+
required: true
+50
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,50 @@
1+
name: 🧩 Feature request
2+
description: Suggest an idea or a feature for this sample
3+
labels: ["feature request"]
4+
5+
body:
6+
- type: checkboxes
7+
id: checklist
8+
attributes:
9+
label: Checklist
10+
options:
11+
- label: I have looked into the [Readme](https://github.com/auth0-samples/auth0-react-samples/tree/master/Sample-01#readme) and have not found a suitable solution or answer.
12+
required: true
13+
- label: I have searched the [issues](https://github.com/auth0-samples/auth0-react-samples/issues) and have not found a suitable solution or answer.
14+
required: true
15+
- label: I have searched the [Auth0 Community](https://community.auth0.com) forums and have not found a suitable solution or answer.
16+
required: true
17+
- label: I agree to the terms within the [Auth0 Code of Conduct](https://github.com/auth0/open-source-template/blob/master/CODE-OF-CONDUCT.md).
18+
required: true
19+
20+
- type: textarea
21+
id: description
22+
attributes:
23+
label: Describe the problem you'd like to have solved
24+
description: A clear and concise description of what the problem is.
25+
validations:
26+
required: true
27+
28+
- type: textarea
29+
id: ideal-solution
30+
attributes:
31+
label: Describe the ideal solution
32+
description: A clear and concise description of what you want to happen.
33+
validations:
34+
required: true
35+
36+
- type: textarea
37+
id: alternatives-and-workarounds
38+
attributes:
39+
label: Alternatives and current workarounds
40+
description: A clear and concise description of any alternatives you've considered or any workarounds that are currently in place.
41+
validations:
42+
required: false
43+
44+
- type: textarea
45+
id: additional-context
46+
attributes:
47+
label: Additional context
48+
description: Add any other context or screenshots about the feature request here.
49+
validations:
50+
required: false

.github/ISSUE_TEMPLATE/config.yml

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
blank_issues_enabled: false
2+
contact_links:
3+
- name: 🤔 Help & Questions
4+
url: https://community.auth0.com
5+
about: Ask general support or usage questions in the Auth0 Community forums.

0 commit comments

Comments
 (0)