From eb68376fbdfc5ca144f516cc117ca72b03d13ec1 Mon Sep 17 00:00:00 2001 From: v420v Date: Sat, 14 Dec 2024 16:23:51 +0900 Subject: [PATCH] add: feature-request issue template --- .github/ISSUE_TEMPLATE/feature-request.yml | 40 ++++++++++++++++++++++ 1 file changed, 40 insertions(+) create mode 100644 .github/ISSUE_TEMPLATE/feature-request.yml diff --git a/.github/ISSUE_TEMPLATE/feature-request.yml b/.github/ISSUE_TEMPLATE/feature-request.yml new file mode 100644 index 0000000..62f8f33 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/feature-request.yml @@ -0,0 +1,40 @@ +name: 🚀 Feature Request +description: Suggest an idea for this project +labels: [Feature Request] +body: + - type: textarea + id: description + attributes: + label: Describe the feature + description: A clear and concise description of the feature you are proposing. + validations: + required: true + + - type: textarea + id: use-case + attributes: + label: Use Case + description: | + Why do you need this feature? + validations: + required: true + + - type: textarea + id: other + attributes: + label: Other Information + description: Any alternative solutions or features you considered, a more detailed explanation, stack traces, related issues, links for context, etc. + validations: + required: false + + - type: checkboxes + id: ack + attributes: + label: Acknowledgements + options: + - label: I may be able to implement this feature request + required: false + + - label: This feature might incur a breaking change + required: false +