From 207895245d80b4a8d1d4438aa5c55ebe74397962 Mon Sep 17 00:00:00 2001 From: Corey Taylor Date: Mon, 13 Jun 2022 16:55:28 -0500 Subject: [PATCH] Add github issue templates --- .github/ISSUE_TEMPLATE/bug_report.yml | 28 ++++++++++++++++++++++ .github/ISSUE_TEMPLATE/config.yml | 5 ++++ .github/ISSUE_TEMPLATE/feature_request.yml | 10 ++++++++ 3 files changed, 43 insertions(+) create mode 100644 .github/ISSUE_TEMPLATE/bug_report.yml create mode 100644 .github/ISSUE_TEMPLATE/config.yml 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 new file mode 100644 index 00000000..d8a98290 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/bug_report.yml @@ -0,0 +1,28 @@ +name: Bug Report +description: Create a bug report +labels: ["defect"] +body: + - type: textarea + attributes: + label: Description + description: "Please provide a description and way to reproduce the problem." + placeholder: | + Please use the CakePHP Slack channel, Discord channel or IRC channel for questions. + + https://cakephp.org/get-involved#getHelp + validations: + required: true + - type: input + attributes: + label: Bake Version + description: "The version of Bake." + placeholder: "4.3.0" + validations: + required: true + - type: input + attributes: + label: PHP Version + description: "The version of CakePHP used." + placeholder: "4.4" + validations: + required: false diff --git a/.github/ISSUE_TEMPLATE/config.yml b/.github/ISSUE_TEMPLATE/config.yml new file mode 100644 index 00000000..07a7d060 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/config.yml @@ -0,0 +1,5 @@ +blank_issues_enabled: false +contact_links: + - name: Community Support + url: https://cakephp.org/get-involved#getHelp + about: Please use the CakePHP Slack channel, Discord channel or IRC channel for questions. diff --git a/.github/ISSUE_TEMPLATE/feature_request.yml b/.github/ISSUE_TEMPLATE/feature_request.yml new file mode 100644 index 00000000..cc2aefc6 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/feature_request.yml @@ -0,0 +1,10 @@ +name: Feature Request +description: Create a feature request +labels: ["enhancement"] +body: + - type: textarea + attributes: + label: Description + description: "Please provide a description of the feature or enhancement." + validations: + required: true