From 0ff849fa023729c3381b97ba4dc370dc582e11d0 Mon Sep 17 00:00:00 2001 From: via Date: Fri, 13 Jan 2023 03:43:26 +0000 Subject: [PATCH] Add issue templates for bug reports and feature requests (#9455) I've added some issue templates, feel free to change them to your liking, but I think it's a good template :D Reviewed-on: https://codeberg.org/calckey/calckey/pulls/9455 Co-authored-by: via Co-committed-by: via --- issue_template/bug.yaml | 70 +++++++++++++++++++++++++++++++++++++ issue_template/feature.yaml | 70 +++++++++++++++++++++++++++++++++++++ 2 files changed, 140 insertions(+) create mode 100644 issue_template/bug.yaml create mode 100644 issue_template/feature.yaml diff --git a/issue_template/bug.yaml b/issue_template/bug.yaml new file mode 100644 index 0000000000..3a21f1399a --- /dev/null +++ b/issue_template/bug.yaml @@ -0,0 +1,70 @@ +name: Bug Report +about: File a bug report +title: "[Bug]: " +body: + - type: markdown + attributes: + value: | + Thanks for taking the time to fill out this bug report! + - type: textarea + id: what-happened + attributes: + label: What happened? + description: Please give us a brief description of what happened. + placeholder: Tell us what you see! + value: "A bug happened!" + validations: + required: true + - type: textarea + id: what-is-expected + attributes: + label: What did you expect to happen? + description: Please give us a brief description of what you expected to happen. + placeholder: Tell us what you wish happened! + value: "Instead of x, y should happen instead!" + validations: + required: true + - type: input + id: version + attributes: + label: Version + description: What version of calckey is your instance running? You can find this by clicking your instance's logo at the bottom left and then clicking instance information. + placeholder: Calckey Version 13.0.4 + validations: + required: true + - type: input + id: instance + attributes: + label: Instance + description: What instance of calckey are you using? + placeholder: stop.voring.me + validations: + required: false + - type: dropdown + id: browsers + attributes: + label: What browser are you using? + multiple: false + options: + - Firefox + - Chrome + - Brave + - Librewolf + - Chromium + - Safari + - Microsoft Edge + - Other (Please Specify) + - type: textarea + id: logs + attributes: + label: Relevant log output + description: Please copy and paste any relevant log output. You can find your log by inspecting the page, and going to the "console" tab. This will be automatically formatted into code, so no need for backticks. + render: shell + - type: checkboxes + id: terms + attributes: + label: Contribution Guidelines + description: By submitting this issue, you agree to follow our [Contribution Guidelines](https://codeberg.org/calckey/calckey/src/branch/develop/CONTRIBUTING.md) + options: + - label: I agree to follow this project's Contribution Guidelines + required: true diff --git a/issue_template/feature.yaml b/issue_template/feature.yaml new file mode 100644 index 0000000000..32f7f2c105 --- /dev/null +++ b/issue_template/feature.yaml @@ -0,0 +1,70 @@ +name: Feature Request +about: Request a Feature +title: "[Feature]: " +body: + - type: markdown + attributes: + value: | + Thanks for taking the time to fill out this feature request! + - type: textarea + id: what-feature + attributes: + label: What feature would you like implemented? + description: Please give us a brief description of what you'd like. + placeholder: Tell us what you want! + value: "x feature would be great!" + validations: + required: true + - type: textarea + id: why-add-feature + attributes: + label: Why should we add this feature? + description: Please give us a brief description of why your feature is important. + placeholder: Tell us why you want this feature! + value: "x feature is super useful because y!" + validations: + required: true + - type: input + id: version + attributes: + label: Version + description: What version of calckey is your instance running? You can find this by clicking your instance's logo at the bottom left and then clicking instance information. + placeholder: Calckey Version 13.0.4 + validations: + required: true + - type: input + id: instance + attributes: + label: Instance + description: What instance of calckey are you using? + placeholder: stop.voring.me + validations: + required: false + - type: dropdown + id: browsers + attributes: + label: What browser are you using? + multiple: false + options: + - Firefox + - Chrome + - Brave + - Librewolf + - Chromium + - Safari + - Microsoft Edge + - Other (Please Specify) + - type: textarea + id: logs + attributes: + label: Relevant log output + description: Please copy and paste any relevant log output. You can find your log by inspecting the page, and going to the "console" tab. This will be automatically formatted into code, so no need for backticks. + render: shell + - type: checkboxes + id: terms + attributes: + label: Contribution Guidelines + description: By submitting this issue, you agree to follow our [Contribution Guidelines](https://codeberg.org/calckey/calckey/src/branch/develop/CONTRIBUTING.md) + options: + - label: I agree to follow this project's Contribution Guidelines + required: true