-
Notifications
You must be signed in to change notification settings - Fork 245
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: Replace markdown issue templates with forms (#938)
* chore: Replace markdown issue templates with forms * Update .github/ISSUE_TEMPLATE/bug_report.yml Co-authored-by: Tom French <[email protected]> --------- Co-authored-by: Tom French <[email protected]>
- Loading branch information
1 parent
cfa9701
commit e51ff01
Showing
4 changed files
with
124 additions
and
72 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,91 @@ | ||
name: Bug Report | ||
description: File a bug report to help us improve. | ||
labels: ["bug"] | ||
body: | ||
- type: markdown | ||
attributes: | ||
value: | | ||
## Description | ||
Thanks for taking the time to fill out this bug report to help us improve Noir! | ||
- type: textarea | ||
id: aim | ||
attributes: | ||
label: Aim | ||
description: Describe what you tried to achieve. | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: expected | ||
attributes: | ||
label: Expected behavior | ||
description: Describe what you expected to happen. | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: bug | ||
attributes: | ||
label: Bug | ||
description: Describe the bug. Supply error codes / terminal logs if applicable. | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: reproduction | ||
attributes: | ||
label: To reproduce | ||
description: Describe the steps to reproduce the behavior. | ||
value: | | ||
1. | ||
2. | ||
3. | ||
4. | ||
- type: markdown | ||
attributes: | ||
value: | | ||
## Environment | ||
Specify your versions of Noir releases used. | ||
- type: markdown | ||
attributes: | ||
value: | | ||
### Using Nargo? | ||
- type: dropdown | ||
id: nargo-install | ||
attributes: | ||
label: Installation method | ||
description: How did you install Nargo? | ||
multiple: false | ||
options: | ||
- Binary | ||
- Compiled from source | ||
- type: input | ||
id: nargo-version | ||
attributes: | ||
label: Nargo version | ||
description: What is the output of the `nargo --version` command? | ||
placeholder: "nargo 0.2.0 (git version hash: e927a39dc3d6517f233509b8349dfd9c7f79471d, is dirty: false)" | ||
- type: markdown | ||
attributes: | ||
value: | | ||
### Using TypeScript? | ||
- type: input | ||
id: noir_wasm-version | ||
attributes: | ||
label: "@noir-lang/noir_wasm version" | ||
description: What is the version number? e.g. version in yarn.lock | ||
placeholder: "0.2.0-ca986a4" | ||
- type: input | ||
id: barretenberg-version | ||
attributes: | ||
label: "@noir-lang/barretenberg version" | ||
description: What is the version number? e.g. version in yarn.lock | ||
placeholder: "2.19.0" | ||
- type: input | ||
id: aztec_backend-version | ||
attributes: | ||
label: "@noir-lang/aztec_backend version" | ||
description: What is the version number? e.g. version in yarn.lock | ||
placeholder: "0.12.0" | ||
- type: textarea | ||
id: additional | ||
attributes: | ||
label: Additional context | ||
description: Please provide any additional context that may be applicable. |
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,33 @@ | ||
name: Feature request | ||
description: Suggest an idea for this project. | ||
labels: [enhancement] | ||
body: | ||
- type: markdown | ||
attributes: | ||
value: | | ||
## Description | ||
Thanks for taking the time to fill out this feature request to help us improve Noir! | ||
- type: textarea | ||
id: problem | ||
attributes: | ||
label: Problem | ||
description: Describe the problem your suggestion sets out to solve. | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: solution | ||
attributes: | ||
label: Proposed solution | ||
description: Describe your proposed solution. | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: alternatives | ||
attributes: | ||
label: Alternatives considered | ||
description: Describe any alternative solutions you have considered. | ||
- type: textarea | ||
id: additional | ||
attributes: | ||
label: Additional context | ||
description: Please provide any additional context that may be applicable. |