From 43d860d5f304fd9293b2d9086deacc0b0763832a Mon Sep 17 00:00:00 2001 From: sy-b <94835959+sy-b@users.noreply.github.com> Date: Tue, 28 Jun 2022 22:52:01 +0530 Subject: Add question to gauge the user's interest resolves #580 --- .github/ISSUE_TEMPLATE/bug.yml | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/.github/ISSUE_TEMPLATE/bug.yml b/.github/ISSUE_TEMPLATE/bug.yml index 2bf949b..8193cca 100644 --- a/.github/ISSUE_TEMPLATE/bug.yml +++ b/.github/ISSUE_TEMPLATE/bug.yml @@ -55,4 +55,13 @@ body: value: "Tell us how it happened with detailed steps for us." validations: required: true +- type: dropdown + attributes: + label: "Will you be available for follow-up questions to help developers diagnose & fix the issue?" + options: + - Yes + - No + validations: + required: true + -- cgit v1.2.3 From 812962f2a484c3e5f0ea4c18182126d1bdf9de24 Mon Sep 17 00:00:00 2001 From: sy-b <94835959+sy-b@users.noreply.github.com> Date: Fri, 1 Jul 2022 10:10:44 +0530 Subject: Disallow Blank Titles --- .github/ISSUE_TEMPLATE/bug.yml | 2 +- .github/ISSUE_TEMPLATE/feature-request.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/ISSUE_TEMPLATE/bug.yml b/.github/ISSUE_TEMPLATE/bug.yml index 8193cca..487b69b 100644 --- a/.github/ISSUE_TEMPLATE/bug.yml +++ b/.github/ISSUE_TEMPLATE/bug.yml @@ -1,6 +1,6 @@ name: Bug Report description: File a bug report! -title: "(Bug): " +# title: "(Bug): " labels: ["bug"] body: - type: input diff --git a/.github/ISSUE_TEMPLATE/feature-request.yml b/.github/ISSUE_TEMPLATE/feature-request.yml index b9a15d6..4793c70 100644 --- a/.github/ISSUE_TEMPLATE/feature-request.yml +++ b/.github/ISSUE_TEMPLATE/feature-request.yml @@ -1,6 +1,6 @@ name: Feature Request description: Request or suggest a new feature! -title: "(Feature Request): " +# title: "(Feature Request): " labels: ["enhancement"] body: - type: dropdown -- cgit v1.2.3 From 2d4af2753c4b42b58ce810771ce146cf3ef21c1e Mon Sep 17 00:00:00 2001 From: sy-b <94835959+sy-b@users.noreply.github.com> Date: Fri, 1 Jul 2022 11:26:54 +0530 Subject: Yes & No - boolean --> string Signed-off-by: sy-b <94835959+sy-b@users.noreply.github.com> --- .github/ISSUE_TEMPLATE/bug.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/ISSUE_TEMPLATE/bug.yml b/.github/ISSUE_TEMPLATE/bug.yml index 487b69b..177632e 100644 --- a/.github/ISSUE_TEMPLATE/bug.yml +++ b/.github/ISSUE_TEMPLATE/bug.yml @@ -59,8 +59,8 @@ body: attributes: label: "Will you be available for follow-up questions to help developers diagnose & fix the issue?" options: - - Yes - - No + - "Yes" + - "No" validations: required: true -- cgit v1.2.3 From 08269b7421825b531651c3edb68403455af85c41 Mon Sep 17 00:00:00 2001 From: sy-b <94835959+sy-b@users.noreply.github.com> Date: Fri, 1 Jul 2022 11:32:00 +0530 Subject: Ask - whether available for follow-up questions Signed-off-by: sy-b <94835959+sy-b@users.noreply.github.com> --- .github/ISSUE_TEMPLATE/feature-request.yml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/.github/ISSUE_TEMPLATE/feature-request.yml b/.github/ISSUE_TEMPLATE/feature-request.yml index 4793c70..123d9d0 100644 --- a/.github/ISSUE_TEMPLATE/feature-request.yml +++ b/.github/ISSUE_TEMPLATE/feature-request.yml @@ -28,4 +28,12 @@ body: options: - label: "Yes" - label: "No" +- type: dropdown + attributes: + label: "Will you be available for follow-up questions to help developers implement this?" + options: + - "Yes" + - "No" + validations: + required: true -- cgit v1.2.3