From 87a6e8a1aa178e9b97c4071f108efa2bb8b53f56 Mon Sep 17 00:00:00 2001 From: ksudate Date: Thu, 30 Mar 2023 19:00:55 +0900 Subject: [PATCH] Add ISSUE_TEMPLATE --- .github/ISSUE_TEMPLATE/bug_report.yaml | 23 +++++++++++++++++++++ .github/ISSUE_TEMPLATE/feature_request.yaml | 11 ++++++++++ 2 files changed, 34 insertions(+) create mode 100644 .github/ISSUE_TEMPLATE/bug_report.yaml create mode 100644 .github/ISSUE_TEMPLATE/feature_request.yaml diff --git a/.github/ISSUE_TEMPLATE/bug_report.yaml b/.github/ISSUE_TEMPLATE/bug_report.yaml new file mode 100644 index 0000000..b8b64b3 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/bug_report.yaml @@ -0,0 +1,23 @@ +name: Bug Report +description: Create a bug report +title: "[Bug]: " +labels: ["bug"] +body: + - type: checkboxes + id: terms + attributes: + label: Pre-requisites + options: + - label: I'd like to contribute the fix myself + - type: textarea + id: description + attributes: + label: What happened/what you expected to happen? + validations: + required: true + - type: textarea + id: logs + attributes: + label: Relevant log output + description: Please copy and paste any relevant log output. This will be automatically formatted into code, so no need for backticks. + render: shell diff --git a/.github/ISSUE_TEMPLATE/feature_request.yaml b/.github/ISSUE_TEMPLATE/feature_request.yaml new file mode 100644 index 0000000..84c2157 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/feature_request.yaml @@ -0,0 +1,11 @@ +name: Feature Request +description: Suggest an idea for gatling-operator +title: "[Feature Request]: " +labels: ["feature"] +body: + - type: textarea + id: summary + attributes: + label: Summary + validations: + required: true