-
Notifications
You must be signed in to change notification settings - Fork 365
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: use GitHub forms for new issues (#4425)
* chore: use GitHub forms for new issues * chore: fix requiredness
- Loading branch information
Showing
4 changed files
with
70 additions
and
71 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,41 @@ | ||
name: Bug report | ||
description: Create a report to help us improve | ||
title: Please replace with a clear and descriptive title | ||
labels: ['type: bug'] | ||
body: | ||
- type: markdown | ||
attributes: | ||
value: Thanks for reporting this bug! | ||
- type: textarea | ||
attributes: | ||
label: Describe the bug | ||
placeholder: A clear and concise description of what the bug is. | ||
validations: | ||
required: true | ||
- type: textarea | ||
attributes: | ||
label: Steps to reproduce | ||
placeholder: | | ||
Step-by-step instructions on how to reproduce the behavior. | ||
Example: | ||
1. Run `git clone git@github.com:owner/repo-with-cli-bug.git` | ||
2. Navigate to the cloned repository | ||
3. Run `netlify dev` | ||
4. See that the CLI exits with an error | ||
validations: | ||
required: true | ||
- type: textarea | ||
attributes: | ||
label: Configuration | ||
placeholder: If possible, please copy/paste below your `netlify.toml`. | ||
- type: textarea | ||
attributes: | ||
label: Environment | ||
description: | | ||
Enter the following command in a terminal and copy/paste its output: | ||
```bash | ||
npx envinfo --system --binaries --npmPackages netlify-cli --npmGlobalPackages netlify-cli | ||
``` | ||
validations: | ||
required: true |
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,29 @@ | ||
name: Feature request | ||
description: Suggest an idea for this project | ||
title: Please replace with a clear and descriptive title | ||
labels: ['type: feature'] | ||
body: | ||
- type: markdown | ||
attributes: | ||
value: Thanks for suggesting a new feature! | ||
- type: textarea | ||
attributes: | ||
label: Which problem is this feature request solving? | ||
placeholder: I'm always frustrated when [...] | ||
validations: | ||
required: true | ||
- type: textarea | ||
attributes: | ||
label: Describe the solution you'd like | ||
placeholder: This could be fixed by [...] | ||
validations: | ||
required: true | ||
- type: checkboxes | ||
attributes: | ||
label: Pull request (optional) | ||
description: | ||
Pull requests are welcome! If you would like to help us fix this bug, please check our [contributions | ||
guidelines](../blob/main/CONTRIBUTING.md). | ||
options: | ||
- label: I can submit a pull request. | ||
required: false |