diff options
author | Chris Swithinbank | 2023-07-15 20:02:33 +0200 |
---|---|---|
committer | GitHub | 2023-07-15 20:02:33 +0200 |
commit | 87ed19f6211e16595e4cd7e137a21f288c2217d4 (patch) | |
tree | b667cc145d953068e268226cb099093225ac6504 | |
parent | 59b952814b5f37f73182477733930af79c8ad3cf (diff) | |
download | IT.starlight-87ed19f6211e16595e4cd7e137a21f288c2217d4.tar.gz IT.starlight-87ed19f6211e16595e4cd7e137a21f288c2217d4.tar.bz2 IT.starlight-87ed19f6211e16595e4cd7e137a21f288c2217d4.zip |
Add feature request issue template (#346)
-rw-r--r-- | .github/ISSUE_TEMPLATE/---02-feature-request.yml | 50 |
1 files changed, 50 insertions, 0 deletions
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 |