From 81b2fa9b9b79a1936ea83d57c02cfe5cc8dda3f4 Mon Sep 17 00:00:00 2001 From: Flemmli97 Date: Wed, 16 Feb 2022 12:54:14 +0100 Subject: [PATCH] updating issue template --- .github/ISSUE_TEMPLATE/bug_report.md | 29 ----------- .github/ISSUE_TEMPLATE/bug_report.yml | 69 +++++++++++++++++++++++++++ .github/ISSUE_TEMPLATE/config.yml | 1 + .github/ISSUE_TEMPLATE/suggestion.yml | 21 ++++++++ 4 files changed, 91 insertions(+), 29 deletions(-) delete mode 100644 .github/ISSUE_TEMPLATE/bug_report.md create mode 100644 .github/ISSUE_TEMPLATE/bug_report.yml create mode 100644 .github/ISSUE_TEMPLATE/config.yml create mode 100644 .github/ISSUE_TEMPLATE/suggestion.yml diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md deleted file mode 100644 index 79e2b82..0000000 --- a/.github/ISSUE_TEMPLATE/bug_report.md +++ /dev/null @@ -1,29 +0,0 @@ ---- -name: Bug report -about: Template for bug reports -title: '' -labels: '' -assignees: '' - ---- - -#### Issue (The better the description the better i can solve the issue): - - - -#### Steps to reproduce: - - - -#### Affected Versions (Latest is NOT a version): - -- Minecraft: -- Forge: If forge -- Fabric(API): If fabric -- Flan: - -#### Other Mods (If you think it might be cause of an incompability. Adding a link + the used version will help greatly): - - - -#### Logs (Use a site like pastebin, gist etc. DONT COPY PASTE THE LOG IN HERE): diff --git a/.github/ISSUE_TEMPLATE/bug_report.yml b/.github/ISSUE_TEMPLATE/bug_report.yml new file mode 100644 index 0000000..0320ba1 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/bug_report.yml @@ -0,0 +1,69 @@ +name: Bug Report +description: Report a bug +body: + - type: markdown + attributes: + value: | + Please fill out this template to report a bug/crash! + For the versions "latest" is NOT a valid version! If you write it your issue will be simply closed. + - type: dropdown + id: loader + attributes: + label: Modloader + options: + - Forge + - Fabric + validations: + required: true + - type: input + id: mc_version + attributes: + label: Minecraft version + validations: + required: true + - type: input + id: loader_version + attributes: + label: Modloader version + description: "Version of forge/fabric(api)?" + validations: + required: true + - type: input + id: modversion + attributes: + label: Mod version + description: "Version of the mod" + validations: + required: true + - type: textarea + id: description + attributes: + label: Description + description: Description of the issue. + validations: + required: true + - type: textarea + id: reproduction + attributes: + label: Steps to reproduce + value: 1. Step one + validations: + required: true + - type: textarea + id: mod_compat + attributes: + label: Mods that might affect the issue + description: | + If you think it might be cause of an incompability + Adding a link + the used version will help greatly + - type: textarea + id: logs + attributes: + label: Logs + description: | + Use a paste site for the logs. If you copy paste the log in here you will be ignored! + Here are example links for those sites: + [https://gist.github.com/](https://gist.github.com/) + [https://paste.gg/](https://paste.gg/) + validations: + required: true \ No newline at end of file diff --git a/.github/ISSUE_TEMPLATE/config.yml b/.github/ISSUE_TEMPLATE/config.yml new file mode 100644 index 0000000..ec4bb38 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/config.yml @@ -0,0 +1 @@ +blank_issues_enabled: false \ No newline at end of file diff --git a/.github/ISSUE_TEMPLATE/suggestion.yml b/.github/ISSUE_TEMPLATE/suggestion.yml new file mode 100644 index 0000000..390a504 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/suggestion.yml @@ -0,0 +1,21 @@ +name: Suggestions +description: Suggest features using this +title: "[Feature Request]: " +labels: ["enhancement"] +body: + - type: markdown + attributes: + value: | + If you have any suggestions or features you want to see in this mod use this template! + - type: textarea + id: suggestion + attributes: + label: Suggestions + description: What feature would you like to add? + validations: + required: true + - type: textarea + id: solution + attributes: + label: Solution + description: If you have a solution or implementation idea write it down here. \ No newline at end of file