aboutsummaryrefslogtreecommitdiff
path: root/.github/ISSUE_TEMPLATE
diff options
context:
space:
mode:
authorGravatar Nate Moore <natemoo-re@users.noreply.github.com> 2021-06-24 10:29:22 -0500
committerGravatar GitHub <noreply@github.com> 2021-06-24 10:29:22 -0500
commit36a461861f5a1dd537e4d0b277013f3454ece0e4 (patch)
tree494507d800c7c876e67efc3a378d382a4f3e15a0 /.github/ISSUE_TEMPLATE
parent428ab5d0c265ac0d43e60b410330e50cff7431b3 (diff)
downloadastro-36a461861f5a1dd537e4d0b277013f3454ece0e4.tar.gz
astro-36a461861f5a1dd537e4d0b277013f3454ece0e4.tar.zst
astro-36a461861f5a1dd537e4d0b277013f3454ece0e4.zip
Update ---bug_report.yml
Diffstat (limited to '.github/ISSUE_TEMPLATE')
-rw-r--r--.github/ISSUE_TEMPLATE/---bug_report.yml50
1 files changed, 33 insertions, 17 deletions
diff --git a/.github/ISSUE_TEMPLATE/---bug_report.yml b/.github/ISSUE_TEMPLATE/---bug_report.yml
index 738dd71e9..d2a4e933d 100644
--- a/.github/ISSUE_TEMPLATE/---bug_report.yml
+++ b/.github/ISSUE_TEMPLATE/---bug_report.yml
@@ -19,35 +19,51 @@ body:
attributes:
label: What package manager are you using?
options:
- - npm@6
- - npm@7
- - yarn@1
- - yarn@2
- - pnpm
- - other
+ - `npm v6`
+ - `npm v7`
+ - `yarn v1 (classic)`
+ - `yarn v2 (berry)`
+ - `pnpm`
+ - other (please explain)
+ validations:
+ required: true
- type: input
attributes:
label: What operating system are you using?
- description: 'For example: macOS, Windows'
+ description: 'For example: macOS, Windows, Linux'
+ validations:
+ required: true
- type: textarea
attributes:
label: Describe the Bug
description: A clear and concise description of what the bug is.
+ validations:
+ required: true
- type: textarea
attributes:
label: Expected Behavior
description: A clear and concise description of what you expected to happen.
+ validations:
+ required: true
+ - type: input
+ attributes:
+ label: Link to Minimal Reproducible Example
+ description: "We can't fix bugs that we can't see for ourselves! Issues with clear, minimal reproducible examples are more likely to be fixed quickly."
+ placeholder: 'https://github.com/username/repo'
- type: textarea
attributes:
label: Steps to reproduce
- description: "We can't fix bugs that we can't see for ourselves! Issues often need to be closed if this section is skipped."
- value:
- 1. `npm init astro` using template <NAME>
-
- 2. ...
-
- 3. ...
-
- 4. ...
+ render: bash
+ value: |
+ # Setup
+ git clone git@github.com:username/repo.git
+ # OR npm init astro --template <name>
- 5. Error! Describe what went wrong...
+ # Steps to reproduce
+ npm install
+ npm run build
+
+ # Paste error below (or describe the issue)
+ Error: ...
+ validations:
+ required: true