diff options
author | 2021-11-12 17:26:42 -0600 | |
---|---|---|
committer | 2021-11-12 17:26:42 -0600 | |
commit | 2712e79bbbe00d05e542bd20f848f06c8fd8856d (patch) | |
tree | 78a995efc9ba844676e4d3ec109aa70d719cf859 | |
parent | 2b031acbd7247094b3b2a0019175794cab8654b2 (diff) | |
download | astro-2712e79bbbe00d05e542bd20f848f06c8fd8856d.tar.gz astro-2712e79bbbe00d05e542bd20f848f06c8fd8856d.tar.zst astro-2712e79bbbe00d05e542bd20f848f06c8fd8856d.zip |
chore: update issue template (#1815)
-rw-r--r-- | .github/ISSUE_TEMPLATE/---01-bug-report.yml | 26 |
1 files changed, 11 insertions, 15 deletions
diff --git a/.github/ISSUE_TEMPLATE/---01-bug-report.yml b/.github/ISSUE_TEMPLATE/---01-bug-report.yml index 8ae60e544..1b62f0d43 100644 --- a/.github/ISSUE_TEMPLATE/---01-bug-report.yml +++ b/.github/ISSUE_TEMPLATE/---01-bug-report.yml @@ -10,10 +10,16 @@ body: ## Quick Checklist Thank you for taking the time to file a bug report! Please fill out this form as completely as possible. - ✅ I am using the **latest version of Astro** and all plugins. + ✅ I am using the **latest version of Astro** and all plugins. ✅ I am using a version of Node that supports ESM (`v12.20.0+`, `v14.13.1+`, or `v16.0.0+`) - type: input attributes: + label: What version of `astro` are you using? + placeholder: 0.0.0 + validations: + required: true + - type: input + attributes: label: What package manager are you using? placeholder: npm, yarn, pnpm validations: @@ -30,20 +36,10 @@ body: description: A clear and concise description of what the bug is. validations: required: true - - type: textarea + - type: input attributes: - label: Steps to Reproduce - description: Describe the bug in steps that we can reproduce ourselves. - value: | - 1. `npm init astro` using template <NAME> - 2. ... - 3. ... - 4. ... - 5. Error! Describe what went wrong (and what was expected instead)... + label: Link to Minimal Reproducible Example + description: 'Please use the following link to create a reproduction: https://astro.new/minimal@next' + placeholder: 'https://stackblitz.com/abcd1234' validations: required: true - - type: input - attributes: - label: Link to Minimal Reproducible Example (Optional) - description: 'Issues with easy reproductions are more likely to get fixed, faster.' - placeholder: 'https://github.com/username/repo' |