From 95636e444859285af7297343c09cbf467a071d19 Mon Sep 17 00:00:00 2001 From: samuel Date: Tue, 11 Jun 2024 14:02:48 +0200 Subject: [PATCH] docs: add a GitHub issue template for feature request --- .github/ISSUE_TEMPLATE/2-feature-request.yml | 33 ++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 .github/ISSUE_TEMPLATE/2-feature-request.yml diff --git a/.github/ISSUE_TEMPLATE/2-feature-request.yml b/.github/ISSUE_TEMPLATE/2-feature-request.yml new file mode 100644 index 0000000..6f8a712 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/2-feature-request.yml @@ -0,0 +1,33 @@ +name: "✨ Feature Request" +description: Suggest a feature or enhancement to improve Planka. +labels: ["Type: Idea"] +body: + - type: dropdown + id: idea-type + attributes: + label: Is this a feature for the backend or frontend? + multiple: true + options: + - Backend + - Frontend + validations: + required: true + - type: textarea + id: feature + attributes: + label: What would you like? + description: A clear description of the feature or enhancement wanted. + placeholder: I'd like to be able to... + validations: + required: true + - type: textarea + id: reason + attributes: + label: Why is this needed? + description: A clear description of why this would be useful to have. + placeholder: I want this because... + - type: textarea + id: other + attributes: + label: Other information + placeholder: Any other details? \ No newline at end of file