From 6305e4176ab5c07f26c6e46d5b96bd35a5cd0605 Mon Sep 17 00:00:00 2001 From: Oliver Akins Date: Thu, 2 Jun 2022 22:45:10 -0600 Subject: [PATCH] Add an issue template for bugs --- .github/ISSUE_TEMPLATES/bug.yaml | 52 ++++++++++++++++++++++++++++++++ 1 file changed, 52 insertions(+) create mode 100644 .github/ISSUE_TEMPLATES/bug.yaml diff --git a/.github/ISSUE_TEMPLATES/bug.yaml b/.github/ISSUE_TEMPLATES/bug.yaml new file mode 100644 index 0000000..f14cea7 --- /dev/null +++ b/.github/ISSUE_TEMPLATES/bug.yaml @@ -0,0 +1,52 @@ +name: Bug report +description: The template for all 3rd party bug reports +labels: + - bug +body: + - type: dropdown + id: platforms + attributes: + label: Affected Platforms + description: >- + Select all of the platforms that this bug was tested on before + submitting an issue + multiple: true + options: + - Linux + - Android + - Mac + - iOS + - Windows + validations: + required: true + - type: textarea + attributes: + label: Expected Behaviour + description: Describe you expect to happen + validations: + required: true + - type: textarea + attributes: + label: Actual Behaviour + description: Describe what actually happens. + validations: + required: true + - type: checkboxes + attributes: + label: Have you? + options: + - label: >- + I have checked that there isn't already a bug on GitHub for this + issue + required: true + - type: dropdown + attributes: + label: Urgenct + description: How urgent do you think this problem is? + options: + - Not Urgent + - Mildly Urgent + - Urgent + - Very Urgent + validations: + required: true