-
-
Notifications
You must be signed in to change notification settings - Fork 2.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
bug_report as YAML file for form fields support
Testing for final submission
- Loading branch information
1 parent
be45bd0
commit 8e05111
Showing
1 changed file
with
64 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,64 @@ | ||
name: Bug Report | ||
description: File a bug report | ||
title: "[Bug]: " | ||
labels: ["bug", "triage"] | ||
assignees: "" | ||
body: | ||
- type: markdown | ||
attributes: | ||
value: Thanks for taking the time to fill out this bug report! | ||
- type: checkboxes | ||
attributes: | ||
label: Is there an existing issue for this? | ||
description: Please search to see if an issue already exists for the bug you encountered. | ||
options: | ||
- label: I have searched the existing issues | ||
required: true | ||
- type: input | ||
id: description | ||
attributes: | ||
label: Description Overview | ||
description: A clear and concise description of what the bug is. | ||
validations: | ||
required: true | ||
- type: input | ||
id: example | ||
attributes: | ||
label: Example | ||
description: An example is worth a thousand words. | ||
placeholder: your code (as text format) and/or your images/videos here. | ||
validations: | ||
required: true | ||
- type: input | ||
id: expected behavior | ||
attributes: | ||
label: Expected Behavior | ||
description: A clear and concise description of what you expected to happen. | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: reproduction steps | ||
attributes: | ||
label: Reproduction Steps | ||
description: Steps to reproduce the behavior: | ||
placeholder: Tell us what you see!\n1. Go to '...'\n2. Click on '....'\n3. etc..\n4. See error | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: suggestion | ||
attributes: | ||
label: Suggestion for Solution | ||
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. | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: configurations | ||
attributes: | ||
label: Configuration Settings | ||
value: | | ||
OS: | ||
eslint-plugin-react version: | ||
eslint version: | ||
node version: | ||
validations: | ||
required: true |