Skip to content

Commit 8e05111

Browse files
committed
bug_report as YAML file for form fields support
Testing for final submission
1 parent be45bd0 commit 8e05111

File tree

1 file changed

+64
-0
lines changed

1 file changed

+64
-0
lines changed

.github/ISSUE_TEMPLATE/bug_report.yml

+64
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,64 @@
1+
name: Bug Report
2+
description: File a bug report
3+
title: "[Bug]: "
4+
labels: ["bug", "triage"]
5+
assignees: ""
6+
body:
7+
- type: markdown
8+
attributes:
9+
value: Thanks for taking the time to fill out this bug report!
10+
- type: checkboxes
11+
attributes:
12+
label: Is there an existing issue for this?
13+
description: Please search to see if an issue already exists for the bug you encountered.
14+
options:
15+
- label: I have searched the existing issues
16+
required: true
17+
- type: input
18+
id: description
19+
attributes:
20+
label: Description Overview
21+
description: A clear and concise description of what the bug is.
22+
validations:
23+
required: true
24+
- type: input
25+
id: example
26+
attributes:
27+
label: Example
28+
description: An example is worth a thousand words.
29+
placeholder: your code (as text format) and/or your images/videos here.
30+
validations:
31+
required: true
32+
- type: input
33+
id: expected behavior
34+
attributes:
35+
label: Expected Behavior
36+
description: A clear and concise description of what you expected to happen.
37+
validations:
38+
required: true
39+
- type: textarea
40+
id: reproduction steps
41+
attributes:
42+
label: Reproduction Steps
43+
description: Steps to reproduce the behavior:
44+
placeholder: Tell us what you see!\n1. Go to '...'\n2. Click on '....'\n3. etc..\n4. See error
45+
validations:
46+
required: true
47+
- type: textarea
48+
id: suggestion
49+
attributes:
50+
label: Suggestion for Solution
51+
description: List what you have tried so far to fix bug. This gives an opportunity for others to help find a solution. Especially first time contributers.
52+
validations:
53+
required: true
54+
- type: textarea
55+
id: configurations
56+
attributes:
57+
label: Configuration Settings
58+
value: |
59+
OS:
60+
eslint-plugin-react version:
61+
eslint version:
62+
node version:
63+
validations:
64+
required: true

0 commit comments

Comments
 (0)