From 23d42c6364c4012b23de5c073a68db0de1fed198 Mon Sep 17 00:00:00 2001 From: Guy Tavor Date: Tue, 9 Aug 2022 16:30:14 +0000 Subject: [PATCH] yaml template --- .github/ISSUE_TEMPLATE/bug_report.md | 38 ------------ .github/ISSUE_TEMPLATE/bug_report.yaml | 85 ++++++++++++++++++++++++++ 2 files changed, 85 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 dd84ea7..0000000 --- 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: '' -labels: '' -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 0000000..ce57afd --- /dev/null +++ b/.github/ISSUE_TEMPLATE/bug_report.yaml @@ -0,0 +1,85 @@ +name: Bug Report +description: "Found a bug? Help us by reporting it, we'd love if you'd first take a look through our open issues, to make sure the issue isn't already filed." +body: + - type: textarea + id: "describe-the-bug" + attributes: + label: "Describe the bug" + description: "A clear and concise description of what the bug is." + placeholder: Tell us what you see. + validations: + required: true + - type: textarea + id: "to-reproduce" + attributes: + label: "To Reproduce" + description: "Bug reports with clear reproduction will get prioritized higher and addressed more quickly." + placeholder: "Steps to reproduce: 1. Go to '...' 2. Click on '...' 3. Scroll down to '...' 4. See error '...'" + validations: + required: true + - type: textarea + id: "expected-behaviour" + attributes: + label: "Expected behaviour" + description: "A clear and concise description of what you expected to happen." + placeholder: Tell us what you expect to see. + validations: + required: false + - type: dropdown + id: "blocker" + attributes: + label: "Does this block you from using Wip daily?" + description: "All feedback will be reviewed, even if you select 'No'." + multiple: false + options: + - "Yes" + - "No" + validations: + required: true + - type: textarea + id: "screenshots" + attributes: + label: "Screenshots" + description: "If applicable, add screenshots to help explain your problem. While optional, screenshots can help expedite the time in which your bug is addressed." + validations: + required: false + - type: dropdown + id: "os" + attributes: + label: "Operating System" + multiple: false + options: + - MacOS + # - Windows + # - Linux + validations: + required: false + - type: input + id: "os-version" + attributes: + label: "OS Version" + description: "For example, `12.5`." + validations: + required: true + - type: input + id: "git-version" + attributes: + label: "Git Version" + description: "For example, `2.37.1` e.g. Run `git --version`" + validations: + required: true + - type: input + id: "wip-version" + attributes: + label: "Wip Version" + description: "Run `wip version` and paste here" + validations: + required: true + - type: textarea + id: "additional-context" + attributes: + label: "Additional context" + description: "Add any other context about the problem here." + validations: + required: false +