diff --git a/.github/ISSUE_TEMPLATE/bug_report.yml b/.github/ISSUE_TEMPLATE/bug_report.yml new file mode 100644 index 0000000..38b7041 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/bug_report.yml @@ -0,0 +1,42 @@ +name: Bug Report +description: Found a bug that needs fixing? +body: + - type: checkboxes + attributes: + label: General Troubleshooting + description: You confirm to have made the following checks first. + options: + - label: I have checked for similar issues on the Issue-tracker. + required: true + - label: I have updated to the latest version + required: true + - label: I have checked the branches or the maintainers' PRs for upcoming bug fixes. + required: true + - type: textarea + attributes: + label: "Description" + description: "General information about the bug" + placeholder: "..." + validations: + required: true + - type: textarea + attributes: + label: "Steps to reproduce" + description: "What happened when the bug occurred?" + placeholder: "1. ..." + validations: + required: true + - type: textarea + attributes: + label: "Expected behaviour" + description: "What should happen?" + placeholder: "It should..." + validations: + required: true + - type: textarea + attributes: + label: "Actual behaviour" + description: "What did happen instead?" + placeholder: "It actually ..." + validations: + required: true diff --git a/.github/ISSUE_TEMPLATE/feature.yml b/.github/ISSUE_TEMPLATE/feature.yml new file mode 100644 index 0000000..df8f9b1 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/feature.yml @@ -0,0 +1,36 @@ +name: Feature request +description: Want some functionality added? +body: + - type: checkboxes + attributes: + label: General Information + description: You confirm to have made the following checks first. + options: + - label: I have checked for similar issues on the Issue-tracker. + required: true + - label: I have updated to the latest version + required: true + - label: I have checked the branches or the maintainers' PRs for upcoming features fixes. + required: true + - type: textarea + attributes: + label: "Description" + description: "General description of the feature" + placeholder: "..." + validations: + required: true + - type: textarea + attributes: + label: "Feature worth and general use" + description: "Why should this exist?" + placeholder: "..." + validations: + required: true + - type: textarea + attributes: + label: "Suggestions for implementation" + description: "Any ideas about what the feature should behave/look like? Commands?" + placeholder: "It should..." + validations: + required: false +