From e6847615d74523d37985dfb2493829c6c2ecdd43 Mon Sep 17 00:00:00 2001 From: Dongdong Tian Date: Sun, 27 Nov 2022 16:04:20 +0800 Subject: [PATCH 1/2] Convert feature request issue template into yaml configured form --- .github/ISSUE_TEMPLATE/feature_request.md | 19 ----------------- .github/ISSUE_TEMPLATE/feature_request.yaml | 23 +++++++++++++++++++++ 2 files changed, 23 insertions(+), 19 deletions(-) delete mode 100644 .github/ISSUE_TEMPLATE/feature_request.md create mode 100644 .github/ISSUE_TEMPLATE/feature_request.yaml diff --git a/.github/ISSUE_TEMPLATE/feature_request.md b/.github/ISSUE_TEMPLATE/feature_request.md deleted file mode 100644 index 76b066980fb..00000000000 --- a/.github/ISSUE_TEMPLATE/feature_request.md +++ /dev/null @@ -1,19 +0,0 @@ ---- -name: Feature request - General feature -about: Request the addition of a new feature/functionality -title: '' -labels: feature request -assignees: '' - ---- - -**Description of the desired feature** - - - - - - -**Are you willing to help implement and maintain this feature?** Yes/No - - diff --git a/.github/ISSUE_TEMPLATE/feature_request.yaml b/.github/ISSUE_TEMPLATE/feature_request.yaml new file mode 100644 index 00000000000..5528eaa753f --- /dev/null +++ b/.github/ISSUE_TEMPLATE/feature_request.yaml @@ -0,0 +1,23 @@ +name: Feature request - General feature +description: Request the addition of a new feature/functionality +labels: ["feature request"] +body: + - type: textarea + attributes: + label: "Description of the desired feature" + description: | + Please be as detailed as you can in your description. + If possible, include an example of how you would like to use this feature (even better if it's a code example). + - type: dropdown + id: help + attributes: + label: Are you willing to help implement and maintain this feature? + description: | + Every feature we add is code that we will have to maintain and keep updated. This takes a lot of effort. + If you are willing to be involved in the project and help maintain your feature, it will make it easier for us to accept it. + options: + - "No (Default)" + - "Yes" + - "Maybe" + validations: + required: true From 8d2bf760cfd6ba2822ecff0f4c841385b8081d7f Mon Sep 17 00:00:00 2001 From: Dongdong Tian Date: Tue, 29 Nov 2022 09:16:09 +0800 Subject: [PATCH 2/2] Update .github/ISSUE_TEMPLATE/feature_request.yaml Co-authored-by: Wei Ji <23487320+weiji14@users.noreply.github.com> --- .github/ISSUE_TEMPLATE/feature_request.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/ISSUE_TEMPLATE/feature_request.yaml b/.github/ISSUE_TEMPLATE/feature_request.yaml index 5528eaa753f..71ca1be6091 100644 --- a/.github/ISSUE_TEMPLATE/feature_request.yaml +++ b/.github/ISSUE_TEMPLATE/feature_request.yaml @@ -16,7 +16,7 @@ body: Every feature we add is code that we will have to maintain and keep updated. This takes a lot of effort. If you are willing to be involved in the project and help maintain your feature, it will make it easier for us to accept it. options: - - "No (Default)" + - "No" - "Yes" - "Maybe" validations: