From 875f396addfb89c189208a1e7b5fe4d9639bf968 Mon Sep 17 00:00:00 2001 From: ANTOND <71350868+antond15@users.noreply.github.com> Date: Tue, 3 May 2022 20:16:05 +0200 Subject: [PATCH] chore: Add issue templates --- .github/FUNDING.yml | 1 + .github/ISSUE_TEMPLATE/bug_report.yml | 43 ++++++++++++++++++++++ .github/ISSUE_TEMPLATE/feature_request.yml | 28 ++++++++++++++ 3 files changed, 72 insertions(+) create mode 100644 .github/FUNDING.yml create mode 100644 .github/ISSUE_TEMPLATE/bug_report.yml create mode 100644 .github/ISSUE_TEMPLATE/feature_request.yml diff --git a/.github/FUNDING.yml b/.github/FUNDING.yml new file mode 100644 index 0000000..5e6a39e --- /dev/null +++ b/.github/FUNDING.yml @@ -0,0 +1 @@ +ko_fi: antond \ No newline at end of file diff --git a/.github/ISSUE_TEMPLATE/bug_report.yml b/.github/ISSUE_TEMPLATE/bug_report.yml new file mode 100644 index 0000000..9f63457 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/bug_report.yml @@ -0,0 +1,43 @@ +name: Bug report +description: Create a report to help us improve +title: "Bug: " +labels: bug +assignees: + - antond15 + +body: + - type: markdown + attributes: + value: | + Thanks for taking the time to fill out this bug report! + + - type: input + id: version + attributes: + label: Version + description: What release version was this issue encountered on? + validations: + required: true + + - type: textarea + id: description + attributes: + label: Issue description + description: A clear and concise description of what the issue is. + validations: + required: true + + - type: textarea + id: reproduction + attributes: + label: Steps to reproduce + description: Steps to reproduce the issue. + placeholder: | + 1. In this environment... + 2. With this config... + 3. Go to '...' + 4. Click on '...' + 5. Scroll down to '...' + 6. See error... + validations: + required: true \ No newline at end of file diff --git a/.github/ISSUE_TEMPLATE/feature_request.yml b/.github/ISSUE_TEMPLATE/feature_request.yml new file mode 100644 index 0000000..b23de45 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/feature_request.yml @@ -0,0 +1,28 @@ +name: Feature request +description: Suggest an idea for this project. +title: "Enhancement: " +labels: enhancement +assignees: + - antond15 + +body: + - type: markdown + attributes: + value: | + Thanks for taking the time to fill out this feature request! + + - type: textarea + id: description + attributes: + label: Feature description + description: A clear and concise description of what you want to be added. + validations: + required: true + + - type: textarea + id: reason + attributes: + label: Reason + description: The reason of why you want this to be added. + validations: + required: true \ No newline at end of file