From b432368d7dca02c53b2d4f049ce913241320a518 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kobe=20=E2=91=A7?= <102713261+HaHaWTH@users.noreply.github.com> Date: Fri, 19 Jul 2024 03:11:21 +0800 Subject: [PATCH] [ci skip] Add Issue Template (#86) * Create config.yml * Create bug_report.yml * Create feature_request.yml * Blank issue is back * Now looks better --- .github/ISSUE_TEMPLATE/bug_report.yml | 68 ++++++++++++++++++++++ .github/ISSUE_TEMPLATE/config.yml | 1 + .github/ISSUE_TEMPLATE/feature_request.yml | 16 +++++ 3 files changed, 85 insertions(+) create mode 100644 .github/ISSUE_TEMPLATE/bug_report.yml create mode 100644 .github/ISSUE_TEMPLATE/config.yml create mode 100644 .github/ISSUE_TEMPLATE/feature_request.yml diff --git a/.github/ISSUE_TEMPLATE/bug_report.yml b/.github/ISSUE_TEMPLATE/bug_report.yml new file mode 100644 index 00000000..01a27896 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/bug_report.yml @@ -0,0 +1,68 @@ +name: Bug report +description: Create a report to help us improve +labels: 'bug' + +body: + - type: markdown + attributes: + value: | + Before reporting an issue make sure you are running the latest build of Leaf and checked for duplicate issues! + + - type: checkboxes + attributes: + label: Is there an existing issue for this? + description: | + Please search to see if an issue already exists for the bug you encountered. + options: + - label: I have searched the existing issues + required: true + + - type: textarea + attributes: + label: What behaviour is observed? + description: A clear and concise description of what the behavior is. + validations: + required: true + + - type: textarea + attributes: + label: Expected behaviour + description: A clear and concise description of what you expected to happen. + validations: + required: true + + - type: textarea + attributes: + label: To Reproduce + description: Steps to reproduce this behaviour + placeholder: | + 1. Go to '...' + 2. Click on '...' + 3. Scroll down to '...' + 4. See error + validations: + required: true + + - type: textarea + attributes: + label: Plugin list + description: This can be found by running `/pl` + validations: + required: true + + - type: input + attributes: + label: Leaf Version + description: What version of Leaf are you running? (`/version`) + validations: + required: true + + - type: input + attributes: + label: Error log (if applicable) + description: If you are reporting a console error, upload any relevant log excerpts to either https://mclo.gs or https://gist.github.com, save and the paste the link in this box. + + - type: input + attributes: + label: Configuration + description: Link of your Leaf & Gale config files, upload any relevant log excerpts to either https://paste.gg or https://gist.github.com, save and the paste the link in this box. diff --git a/.github/ISSUE_TEMPLATE/config.yml b/.github/ISSUE_TEMPLATE/config.yml new file mode 100644 index 00000000..0086358d --- /dev/null +++ b/.github/ISSUE_TEMPLATE/config.yml @@ -0,0 +1 @@ +blank_issues_enabled: true diff --git a/.github/ISSUE_TEMPLATE/feature_request.yml b/.github/ISSUE_TEMPLATE/feature_request.yml new file mode 100644 index 00000000..2620d99f --- /dev/null +++ b/.github/ISSUE_TEMPLATE/feature_request.yml @@ -0,0 +1,16 @@ +name: Feature request +description: Suggest an idea for Leaf +labels: 'enhancement' + +body: + - type: markdown + attributes: + value: | + Thanks for taking the time to fill out this feature request for Leaf! Fill out the following form to your best ability to help us understand your feature request and greately improve the change of it getting added. + + - type: textarea + attributes: + label: What feature do you want to see added? + description: A clear and concise description of your feature request. + validations: + required: true