From 454d3bd0b4bb7aa509ed45c6ea122755bb3ace30 Mon Sep 17 00:00:00 2001 From: Sinai Date: Fri, 2 Jul 2021 17:10:26 +1000 Subject: [PATCH] Add bug report issue template --- .github/ISSUE_TEMPLATE/bug_report.yaml | 55 ++++++++++++++++++++++++++ .github/ISSUE_TEMPLATE/config.yml | 1 + 2 files changed, 56 insertions(+) create mode 100644 .github/ISSUE_TEMPLATE/bug_report.yaml create mode 100644 .github/ISSUE_TEMPLATE/config.yml diff --git a/.github/ISSUE_TEMPLATE/bug_report.yaml b/.github/ISSUE_TEMPLATE/bug_report.yaml new file mode 100644 index 0000000..6cdc8eb --- /dev/null +++ b/.github/ISSUE_TEMPLATE/bug_report.yaml @@ -0,0 +1,55 @@ +name: Bug Report +description: File a bug or crash report +title: "[Bug]: " +labels: [bug] +body: + - type: markdown + attributes: + value: | + Thanks for submitting a bug report, please fill out as much detail as possible. + - type: checkboxes + id: latestversion + attributes: + label: Are you on the latest version of UnityExplorer? + description: If not, please update first. + options: + - label: Yes, I'm on the latest version of UnityExplorer. + required: true + - type: dropdown + id: version + attributes: + label: Which release are you using? + description: Please select your environment for UnityExplorer. + options: + - BepInEx IL2CPP + - BepInEx 6.X Mono + - BepInEx 5.X Mono + - MelonLoader 0.4+ IL2CPP + - MelonLoader 0.4+ Mono + - MelonLoader 0.3 IL2CPP + - MelonLoader 0.3 Mono + - Standalone IL2CPP + - Standalone Mono + validations: + required: true + - type: textarea + id: what-happened + attributes: + label: Describe the issue. + description: What happened? Should something else have happened instead? + placeholder: Tell us what you see! + value: "" + validations: + required: true + - type: textarea + id: logs + attributes: + label: Log output + description: > + Please copy and paste your mod loader's log output. + * BepInEx: `BepInEx\LogOutput.log` + * MelonLoader: `MelonLoader\latest.log` + * Standalone: `{DLL_Location}\UnityExplorer\Logs\` (pick the most recent one) + render: shell + 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