0
Fork 0
mirror of https://github.com/withastro/astro.git synced 2025-02-17 22:44:24 -05:00

Update ---bug_report.yml

This commit is contained in:
Nate Moore 2021-06-24 10:29:22 -05:00 committed by GitHub
parent 428ab5d0c2
commit 36a461861f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -19,35 +19,51 @@ body:
attributes: attributes:
label: What package manager are you using? label: What package manager are you using?
options: options:
- npm@6 - `npm v6`
- npm@7 - `npm v7`
- yarn@1 - `yarn v1 (classic)`
- yarn@2 - `yarn v2 (berry)`
- pnpm - `pnpm`
- other - other (please explain)
validations:
required: true
- type: input - type: input
attributes: attributes:
label: What operating system are you using? label: What operating system are you using?
description: 'For example: macOS, Windows' description: 'For example: macOS, Windows, Linux'
validations:
required: true
- type: textarea - type: textarea
attributes: attributes:
label: Describe the Bug label: Describe the Bug
description: A clear and concise description of what the bug is. description: A clear and concise description of what the bug is.
validations:
required: true
- type: textarea - type: textarea
attributes: attributes:
label: Expected Behavior label: Expected Behavior
description: A clear and concise description of what you expected to happen. 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 - type: textarea
attributes: attributes:
label: Steps to reproduce 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." render: bash
value: value: |
1. `npm init astro` using template <NAME> # Setup
git clone git@github.com:username/repo.git
# OR npm init astro --template <name>
2. ... # Steps to reproduce
npm install
3. ... npm run build
4. ... # Paste error below (or describe the issue)
Error: ...
5. Error! Describe what went wrong... validations:
required: true