From 87ed19f6211e16595e4cd7e137a21f288c2217d4 Mon Sep 17 00:00:00 2001 From: Chris Swithinbank Date: Sat, 15 Jul 2023 20:02:33 +0200 Subject: Add feature request issue template (#346) --- .github/ISSUE_TEMPLATE/---02-feature-request.yml | 50 ++++++++++++++++++++++++ 1 file changed, 50 insertions(+) create mode 100644 .github/ISSUE_TEMPLATE/---02-feature-request.yml diff --git a/.github/ISSUE_TEMPLATE/---02-feature-request.yml b/.github/ISSUE_TEMPLATE/---02-feature-request.yml new file mode 100644 index 00000000..59e98328 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/---02-feature-request.yml @@ -0,0 +1,50 @@ +name: Feature Request +description: Suggest an improvement you’d like to see added to Starlight +labels: [] +assignees: [] +body: + - type: markdown + attributes: + value: | + Thank you for getting in touch! Please fill out this form as completely as possible. + + Want to report a bug instead? [Use our bug report form](https://github.com/withastro/starlight/issues/new?assignees=&labels=&projects=&template=---01-bug-report.yml) + Want to chat before posting? [Join us in the `#starlight` channel on Discord](https://astro.build/chat) + - type: input + id: starlight-version + attributes: + label: What version of `starlight` are you using? + placeholder: 0.0.0 + validations: + required: true + - type: textarea + id: summary + attributes: + label: What is your idea? + description: A brief, one or two sentence description of your idea for a new feature. + validations: + required: true + - type: textarea + id: background + attributes: + label: Why is this feature necessary? + description: Explain why this feature is important. What problems would it solve? Which users would it help? + validations: + required: true + - type: textarea + id: prior-art + attributes: + label: Do you have examples of this feature in other projects? + description: Help us understand your idea by sharing links to example implementations we can compare against. + placeholder: | + - Example + - Example + - Example + - type: checkboxes + id: will-pr + attributes: + label: Participation + description: Let us know if your interested in contributing this feature yourself. + options: + - label: I am willing to submit a pull request for this issue. + required: false -- cgit