-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore(repo): switch to using a github issue form (nrwl#13235)
- Loading branch information
1 parent
64af085
commit 3e27ce8
Showing
2 changed files
with
66 additions
and
33 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
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,66 @@ | ||
|
||
name: 🐞 Bug Report | ||
description: This form is to report unexpected behavior in Nx. | ||
labels: ["type: bug"] | ||
body: | ||
- type: markdown | ||
attributes: | ||
value: | | ||
Thank you for taking your precious time to file an issue! 🙏 We are sorry for the inconvenience this issue has caused you and want to resolve it as soon as possible. | ||
Help us help you! We know that your time is precious and hate to ask for any more of it, but the first step in fixing this issue is to understand the issue. Taking some extra time to ensure that we are able to reproduce the issue will help us significantly in resolving the issue. | ||
- type: textarea | ||
id: current-behavior | ||
attributes: | ||
label: Current Behavior | ||
description: What is the behavior that currently you experience? | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: expected-behavior | ||
attributes: | ||
label: Expected Behavior | ||
description: What is the behavior that you expect to happen? | ||
validations: | ||
required: true | ||
- type: input | ||
id: repo | ||
attributes: | ||
label: Github Repo | ||
description: | | ||
This is extremely important! If this issue is reproduce-able on https://github.com/nrwl/nx-examples, you may use that as the repo. | ||
If not, please do take a few minutes of your time to create a repo to help us reproduce the issue. | ||
This is the best way to help us reproduce the issue and fix it as soon as possible. | ||
- type: textarea | ||
id: reproduction | ||
attributes: | ||
label: Steps to Reproduce | ||
description: Please provide some instructions to reproduce the issue in the repo provided above. Be as detailed as possible. | ||
value: | | ||
1. | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: nx-report | ||
attributes: | ||
label: Nx Report | ||
description: Please paste the contents shown by `nx report`. This will be automatically formatted into code, so no need for backticks. | ||
render: shell | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: logs | ||
attributes: | ||
label: Failure Logs | ||
description: Please include any relevant log snippets or files here. This will be automatically formatted into code, so no need for backticks. | ||
render: shell | ||
- type: textarea | ||
id: additional | ||
attributes: | ||
label: Additional Information | ||
description: Is there any additional information that you can provide? | ||
- type: markdown | ||
id: disclaimer | ||
attributes: | ||
value: | | ||
> If we are not able to reproduce the issue, we will likely prioritize fixing other issues we can reproduce. Please do your best to fill out all of the sections above. |