From 003944e7c3b408a45b2f92deea15e05223629aa2 Mon Sep 17 00:00:00 2001 From: Daniel Beer <38084194+beerinho@users.noreply.github.com> Date: Fri, 13 Dec 2024 11:45:11 +0100 Subject: [PATCH 1/2] add bug issue template --- .github/ISSUE_TEMPLATE/bug_report.yml | 44 +++++++++++++++++++++++++++ 1 file changed, 44 insertions(+) create mode 100644 .github/ISSUE_TEMPLATE/bug_report.yml diff --git a/.github/ISSUE_TEMPLATE/bug_report.yml b/.github/ISSUE_TEMPLATE/bug_report.yml new file mode 100644 index 0000000..a2550e5 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/bug_report.yml @@ -0,0 +1,44 @@ +name: "\U0001F41E Bug report" +description: Report an issue with Sheepdog +labels: ['bug'] +body: + - type: markdown + attributes: + value: | + Thanks for taking the time to fill out this bug report! + - type: textarea + id: bug-description + attributes: + label: Describe the bug + description: A clear and concise description of what the bug is. If you intend to submit a PR for this issue, tell us in the description. Thanks! + placeholder: Bug description + validations: + required: true + - type: textarea + id: reproduction + attributes: + label: Reproduction + description: Please provide a link to a repo or REPL that can reproduce the problem you ran into. If a report is provided without an easy way to reproduce the bug, it's likely we will not be able to help. + placeholder: Reproduction + validations: + required: true + - type: dropdown + id: severity + attributes: + label: Severity + description: Select the severity of this issue + options: + - annoyance + - blocking all usage of Sheepdog + validations: + required: true + - type: dropdown + id: package + attributes: + label: Package name + description: Select the Sheepdog package + options: + - core + - svelte + validations: + required: true From 40ec9650c66c616653f6149e32bd40f80595bc26 Mon Sep 17 00:00:00 2001 From: Paolo Ricciuti Date: Fri, 13 Dec 2024 14:59:06 +0100 Subject: [PATCH 2/2] chore: new severity options --- .github/ISSUE_TEMPLATE/bug_report.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/ISSUE_TEMPLATE/bug_report.yml b/.github/ISSUE_TEMPLATE/bug_report.yml index a2550e5..079339a 100644 --- a/.github/ISSUE_TEMPLATE/bug_report.yml +++ b/.github/ISSUE_TEMPLATE/bug_report.yml @@ -29,6 +29,8 @@ body: description: Select the severity of this issue options: - annoyance + - serious but i have a workaround + - blocking me on a specific feature - blocking all usage of Sheepdog validations: required: true