From 396a58d066da022af1e2db2a4929abde2fee4d6e Mon Sep 17 00:00:00 2001 From: Kyle Conroy Date: Fri, 18 Mar 2022 19:15:16 -0700 Subject: [PATCH] Add a new issue template --- .github/ISSUE_TEMPLATE/FEATURE_REQUEST.yml | 29 ++++++++++++++++++++++ 1 file changed, 29 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 0000000000..8a78992c4f --- /dev/null +++ b/.github/ISSUE_TEMPLATE/FEATURE_REQUEST.yml @@ -0,0 +1,29 @@ +name: Feature Request +description: Request a new fetaure or a change to an existing feature +labels: [enhancement, triage] +body: + - type: textarea + id: feature + attributes: + label: What do you want to change? + placeholder: Tell us what you want + value: "Free unicorns!" + validations: + required: true + - type: dropdown + id: engines + attributes: + label: What database engines need to be changed? + multiple: true + options: + - PostgreSQL + - MySQL + - type: dropdown + id: languages + attributes: + label: What programming language backends need to be changed? + multiple: true + options: + - Go + - Python + - Kotlin