diff --git a/.github/ISSUE_TEMPLATE/feature_request.md b/.github/ISSUE_TEMPLATE/feature_request.md deleted file mode 100644 index f86a5749..00000000 --- a/.github/ISSUE_TEMPLATE/feature_request.md +++ /dev/null @@ -1,26 +0,0 @@ ---- -name: Feature request -about: Suggest an idea for this project -title: '' -labels: '' -assignees: '' - ---- - -**Is your feature request related to a problem? Please describe.** -A clear and concise description of what the problem is. Ex. When I try X [...] - -**Priority you would assign to the feature** -Choose between High, Medium, Low. - -**Describe the solution you'd like** -A clear and concise description of what you want to happen. - -**Describe alternatives you've considered** -A clear and concise description of any alternative solutions or features you've considered. - -**Available workarounds** -Are there any available workarounds in case this feature does not get picked up? - -**Additional context** -Add any other context or screenshots about the feature request here. diff --git a/.github/ISSUE_TEMPLATE/feature_request.yml b/.github/ISSUE_TEMPLATE/feature_request.yml new file mode 100644 index 00000000..64feb67a --- /dev/null +++ b/.github/ISSUE_TEMPLATE/feature_request.yml @@ -0,0 +1,66 @@ +name: Feature request +description: Suggest an idea for this project. +labels: "S: needs triage, type: feature" + +body: + - type: markdown + attributes: + value: >- + Hi there! + + Thanks for taking the time to suggest a new feature! Please search existing + issues first to make sure this hasn't already been requested. + + - type: textarea + attributes: + label: Is your feature request related to a problem? + description: >- + A clear and concise description of what the problem is. + placeholder: "Ex. When I try X [...]" + validations: + required: true + + - type: dropdown + attributes: + label: Priority + description: What priority would you assign to this feature? + options: + - High + - Medium + - Low + validations: + required: true + + - type: textarea + attributes: + label: Describe the solution you'd like + description: >- + A clear and concise description of what you want to happen. + validations: + required: true + + - type: textarea + attributes: + label: Describe alternatives you've considered + description: >- + A clear and concise description of any alternative solutions or features you've considered. + + - type: textarea + attributes: + label: Available workarounds + description: >- + Are there any available workarounds in case this feature does not get picked up? + + - type: textarea + attributes: + label: Additional context + description: >- + Add any other context or screenshots about the feature request here. + + - type: checkboxes + attributes: + label: Code of Conduct + options: + - label: >- + I agree to follow the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/). + required: true