Skip to content

Commit

Permalink
chore: Replace markdown issue templates with forms (#938)
Browse files Browse the repository at this point in the history
* 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
phated and TomAFrench authored Mar 2, 2023
1 parent cfa9701 commit e51ff01
Show file tree
Hide file tree
Showing 4 changed files with 124 additions and 72 deletions.
49 changes: 0 additions & 49 deletions .github/ISSUE_TEMPLATE/bug_report.md

This file was deleted.

91 changes: 91 additions & 0 deletions .github/ISSUE_TEMPLATE/bug_report.yml
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.
23 changes: 0 additions & 23 deletions .github/ISSUE_TEMPLATE/feature_request.md

This file was deleted.

33 changes: 33 additions & 0 deletions .github/ISSUE_TEMPLATE/feature_request.yml
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.

0 comments on commit e51ff01

Please sign in to comment.