From 0d551b28d55f0a9cc62cea77c891a281c34a1a61 Mon Sep 17 00:00:00 2001 From: paudelacuesta Date: Mon, 27 Dec 2021 12:05:04 +0100 Subject: [PATCH] [#23] Update Bug Report Template --- .github/ISSUE_TEMPLATE/bug_report.md | 27 --------------- .github/ISSUE_TEMPLATE/bug_report.yml | 50 +++++++++++++++++++++++++++ 2 files changed, 50 insertions(+), 27 deletions(-) delete mode 100644 .github/ISSUE_TEMPLATE/bug_report.md create mode 100644 .github/ISSUE_TEMPLATE/bug_report.yml diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md deleted file mode 100644 index 0d7faee..0000000 --- a/.github/ISSUE_TEMPLATE/bug_report.md +++ /dev/null @@ -1,27 +0,0 @@ ---- -name: Bug report -about: Create a report to help us improve -title: '' -labels: bug -assignees: kpicaza - ---- - -**Describe the bug** -A clear and concise description of what the bug is. - -**To Reproduce** -Steps to reproduce the behavior: -1. Go to '...' -2. Click on '....' -3. Scroll down to '....' -4. See error - -**Expected behavior** -A clear and concise description of what you expected to happen. - -**Screenshots** -If applicable, add screenshots to help explain your problem. - -**Additional context** -Add any other context about the problem here. diff --git a/.github/ISSUE_TEMPLATE/bug_report.yml b/.github/ISSUE_TEMPLATE/bug_report.yml new file mode 100644 index 0000000..5cdebe1 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/bug_report.yml @@ -0,0 +1,50 @@ +name: 🐞 Bug Report +description: Create a report to help us improve +title: "[Bug]: " +labels: ["bug", "triage"] +assignees: + - kpicaza + - xserrat + - pcs289 +body: + - type: markdown + attributes: + value: | + ## Thanks for taking the time to fill out this bug report! + - type: textarea + id: bug-description + attributes: + label: What happened? + description: A clear and concise description of what the bug is. + placeholder: Also tell us, what did you expect to happen? + value: "A bug happened!" + validations: + required: true + - type: textarea + id: steps-reproduce + attributes: + label: Steps To Reproduce + description: Steps to reproduce the behavior. + placeholder: | + 1. Go to '...' + 2. Click on '....' + 3. Scroll down to '....' + 4. See error + validations: + required: false + - 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 + - type: checkboxes + id: terms + attributes: + label: Code of Conduct + description: By submitting this issue, you agree to follow our [Code of Conduct](https://github.com/pheature-flags/pheature-flags/blob/1.0.x/CODE_OF_CONDUCT.md) + options: + - label: I agree to follow Pheature Flags' Code of Conduct + required: true + validations: + required: true