From a65b4eb6cda45076b9fb095e6a5c62029ca19858 Mon Sep 17 00:00:00 2001 From: Harikrushna V Date: Thu, 11 Aug 2022 19:07:45 +0530 Subject: [PATCH] Updated Bug Template (#126) * New bug report format * Rename bug_report.md to bug_report.yaml --- .github/ISSUE_TEMPLATE/bug_report.md | 38 ---------------- .github/ISSUE_TEMPLATE/bug_report.yaml | 62 ++++++++++++++++++++++++++ 2 files changed, 62 insertions(+), 38 deletions(-) delete mode 100644 .github/ISSUE_TEMPLATE/bug_report.md create mode 100644 .github/ISSUE_TEMPLATE/bug_report.yaml diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md deleted file mode 100644 index 5b0a8043..00000000 --- a/.github/ISSUE_TEMPLATE/bug_report.md +++ /dev/null @@ -1,38 +0,0 @@ ---- -name: Bug report -about: Create a report to help us improve -title: "[BUG]" -labels: bug -assignees: '' - ---- - -**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. - -**Desktop (please complete the following information):** - - OS: [e.g. iOS] - - Browser [e.g. chrome, safari] - - Version [e.g. 22] - -**Smartphone (please complete the following information):** - - Device: [e.g. iPhone6] - - OS: [e.g. iOS8.1] - - Browser [e.g. stock browser, safari] - - Version [e.g. 22] - -**Additional context** -Add any other context about the problem here. diff --git a/.github/ISSUE_TEMPLATE/bug_report.yaml b/.github/ISSUE_TEMPLATE/bug_report.yaml new file mode 100644 index 00000000..9d26f03d --- /dev/null +++ b/.github/ISSUE_TEMPLATE/bug_report.yaml @@ -0,0 +1,62 @@ +name: 🐞 Bug report +description: Create a report to help us improve +title: "[BUG] " +labels: bug +body: +- type: textarea + attributes: + label: Describe the bug + description: A clear and concise description of what the bug is. + validations: + required: true +- type: textarea + attributes: + label: To Reproduce + description: | + Steps to reproduce the behavior: + 1. Go to '...' + 2. Click on '....' + 3. Scroll down to '....' + 4. See error + validations: + required: true +- type: textarea + attributes: + label: Expected behavior + description: A clear and concise description of what you expected to happen. + validations: + required: true +- type: textarea + attributes: + label: Screenshots + description: A clear and concise description of what you expected to happen. +- type: textarea + attributes: + label: Desktop + description: | + examples: + - **Device**: iPhone12 + - **OS**: Ubuntu 20.04, iOS + - **Browser**: chrome, safari + - **version**: 22 + value: | + - Device + - OS: + - Browser: + - Version: +- type: textarea + attributes: + label: Smartphone + description: | + examples: + - **OS**: Ubuntu 20.04, iOS + - **Browser**: chrome, safari + - **version**: 22 + value: | + - OS: + - Browser: + - Version: +- type: textarea + attributes: + label: Additional context + description: Add any other context about the problem here.