From ef3f644c4448e11e3e1da62883970932cb53dace Mon Sep 17 00:00:00 2001 From: Dan Kift Date: Tue, 23 Jul 2024 11:36:24 +0100 Subject: [PATCH] Add feature request template (#103) --- .github/ISSUE_TEMPLATE/bug_report.yml | 12 ++++++---- .github/ISSUE_TEMPLATE/feature_request.yml | 26 ++++++++++++++++++++++ 2 files changed, 34 insertions(+), 4 deletions(-) create mode 100644 .github/ISSUE_TEMPLATE/feature_request.yml diff --git a/.github/ISSUE_TEMPLATE/bug_report.yml b/.github/ISSUE_TEMPLATE/bug_report.yml index 42b65a3..963ce1a 100644 --- a/.github/ISSUE_TEMPLATE/bug_report.yml +++ b/.github/ISSUE_TEMPLATE/bug_report.yml @@ -1,7 +1,6 @@ name: 🐛 Bug Report description: Something is wrong with the Checkout Sheet Kit. -labels: - - 'Bug' +labels: ['Bug', 'untriaged'] body: - type: markdown attributes: @@ -36,14 +35,19 @@ body: - type: input attributes: label: What version of `@shopify/checkout-sheet-kit` are you using? - description: Please list the package version and device you are testing with. + description: + Please list the package version and device you are testing with. validations: required: true - type: textarea attributes: label: Do you have reproducible example code? - description: (Optional) Please demonstrate how you're encountering this error by sharing the mutation you are using to create the Checkout URL as well as the code to present the checkout. This will help us debug the issue more quickly. + description: + (Optional) Please demonstrate how you're encountering this error by + sharing the mutation you are using to create the Checkout URL as well as + the code to present the checkout. This will help us debug the issue more + quickly. validations: required: false diff --git a/.github/ISSUE_TEMPLATE/feature_request.yml b/.github/ISSUE_TEMPLATE/feature_request.yml new file mode 100644 index 0000000..bc16bd3 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/feature_request.yml @@ -0,0 +1,26 @@ +name: 💡 Feature Request +description: + An idea or suggestion for a new feature or enhancement to the Checkout Sheet + Kit +labels: ['Feature-Request', 'untriaged'] +body: + - type: markdown + attributes: + value: | + ## Hi there! + + Please tell us about the new feature or enhancement you'd like to see implemented in the Checkout Sheet Kit. + + - type: textarea + attributes: + label: Description + description: + A detailed description of the feature or enhancement you'd like to see. + validations: + required: true + - type: textarea + attributes: + label: Rationale + description: Explain the benefits of this feature. + validations: + required: true