From 00c1037951f350ae76dae39235d4c79150d56758 Mon Sep 17 00:00:00 2001 From: Oliver Date: Sat, 15 Mar 2025 15:43:58 +0100 Subject: [PATCH] Add issue templates --- .github/ISSUE_TEMPLATE/bug_report.yml | 46 ++++++++++++++++++++++ .github/ISSUE_TEMPLATE/config.yml | 1 + .github/ISSUE_TEMPLATE/feature_request.yml | 13 ++++++ 3 files changed, 60 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..3cfc83d8 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/bug_report.yml @@ -0,0 +1,46 @@ +name: Bug Report +description: File a bug report. +title: "Bug: " +labels: ["bug"] +body: + - type: textarea + id: what-happened + attributes: + label: What happened? + description: Also tell us, what did you expect to happen? + placeholder: Tell us what you see! + validations: + required: true + - type: dropdown + id: software + attributes: + label: In which software has the error occurred? + multiple: false + options: + - Paper + - Folia + - Other + validations: + required: true + - type: input + id: plugin_version + attributes: + label: Plugin version + description: Which version of FancyNpcs are you using? + placeholder: "1.4.1-rc.2" + validations: + required: true + - type: input + id: server_version + attributes: + label: Server version + description: What version is your minecraft server running on? + placeholder: "1.21.4" + validations: + required: true + - type: textarea + id: logs + attributes: + label: Relevant log output + description: Please copy and paste any relevant log output. This will be automatically formatted into code, so no need for backticks. + render: shell diff --git a/.github/ISSUE_TEMPLATE/config.yml b/.github/ISSUE_TEMPLATE/config.yml new file mode 100644 index 00000000..3ba13e0c --- /dev/null +++ b/.github/ISSUE_TEMPLATE/config.yml @@ -0,0 +1 @@ +blank_issues_enabled: false diff --git a/.github/ISSUE_TEMPLATE/feature_request.yml b/.github/ISSUE_TEMPLATE/feature_request.yml new file mode 100644 index 00000000..379b459c --- /dev/null +++ b/.github/ISSUE_TEMPLATE/feature_request.yml @@ -0,0 +1,13 @@ +name: Feature Request +description: Suggest a new Feature. +title: "Feature: " +labels: ["feature"] +body: + - type: textarea + id: description + attributes: + label: Describe your idea + description: Please provide a raw or complete concent of the feature + placeholder: A detailed description, possibly with examples or concept arts. + validations: + required: true