From 86fbead609c5d777ec641f6f7b146b7cd6fc22d9 Mon Sep 17 00:00:00 2001 From: Kowlin Date: Mon, 1 Feb 2021 21:21:12 +0100 Subject: [PATCH] First attempt at issue templates. (#4779) * Lets try this new fancy thing * Rename command_bug.md to command_bug.yml * Update command_bug.yml * Cog name before command name, thank you Co-authored-by: jack1142 <6032823+jack1142@users.noreply.github.com> --- .github/ISSUE_TEMPLATE/command_bug.md | 34 ------------- .github/ISSUE_TEMPLATE/command_bug.yml | 66 ++++++++++++++++++++++++++ 2 files changed, 66 insertions(+), 34 deletions(-) delete mode 100644 .github/ISSUE_TEMPLATE/command_bug.md create mode 100644 .github/ISSUE_TEMPLATE/command_bug.yml diff --git a/.github/ISSUE_TEMPLATE/command_bug.md b/.github/ISSUE_TEMPLATE/command_bug.md deleted file mode 100644 index 4701397ec..000000000 --- a/.github/ISSUE_TEMPLATE/command_bug.md +++ /dev/null @@ -1,34 +0,0 @@ ---- -name: Bug reports for commands -about: For bugs that involve commands found within Red -title: '' -labels: 'Type: Bug' -assignees: '' - ---- - -# Command bugs - - - -#### Command name - - - -#### What cog is this command from? - - - -#### What were you expecting to happen? - - - -#### What actually happened? - - - -#### How can we reproduce this issue? - - diff --git a/.github/ISSUE_TEMPLATE/command_bug.yml b/.github/ISSUE_TEMPLATE/command_bug.yml new file mode 100644 index 000000000..90010c6e7 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/command_bug.yml @@ -0,0 +1,66 @@ +name: Bug reports for commands +about: For bugs that involve commands found within Red. +title: '' +labels: 'Type: Bug' +assignees: '' +issue_body: true +inputs: +- type: description + attributes: + - value: 'Thank you for taking the time to fill out an issue. This template is meant for any issues related to commands. If you require help with installing Red we ask that you join our Discord server over at https://discord.gg/red' +- type: input + attributes: + label: "What version are you using?" + required: true +- type: dropdown + attributes: + label: "Cog name" + description: "From which cog does the command come from?" + required: true + choices: + - Admin + - Alias + - Audio + - Bank + - Cleanup + - CogManagerUI + - Core + - Customcom + - Dev + - Downloader + - Economy + - Filter + - General + - Image + - Mod + - Modlog + - Mutes + - Permissions + - Reports + - Streams + - Trivia + - Warnings +- type: input + attributes: + label: "Command name" + description: "What is the command that caused the error?" + placeholder: "play" + required: true +- type: textarea + attributes: + label: "Expected behavior" + description: "What did you expect to happen?" + required: true +- type: textarea + attributes: + label: "What actually happened?" + required: true +- type: textarea + attributes: + label: "How can we reproduce this error?" + value: | + 1. + 2. + 3. + ... + required: true