diff --git a/.github/ISSUE_TEMPLATE/command_bug.yml b/.github/ISSUE_TEMPLATE/command_bug.yml index d64c11957..f9662ad67 100644 --- a/.github/ISSUE_TEMPLATE/command_bug.yml +++ b/.github/ISSUE_TEMPLATE/command_bug.yml @@ -4,8 +4,8 @@ title: '' labels: 'Type: Bug' assignees: '' issue_body: true -inputs: -- type: description +body: +- type: markdown attributes: value: | Thank you for taking the time to fill out an issue. This template is meant for any issues related to commands. @@ -14,13 +14,13 @@ inputs: attributes: label: "What Red version are you using?" placeholder: 3.4.5 + validations: required: true - type: dropdown attributes: label: "Cog name" description: "From which cog does the command come from?" - required: true - choices: + options: - Admin - Alias - Audio @@ -43,15 +43,19 @@ inputs: - Streams - Trivia - Warnings + validations: + required: true - type: input attributes: label: "Command name" description: "What is the command that caused the error?" placeholder: "play" + validations: required: true - type: textarea attributes: label: "What did you expect to happen?" + validations: required: true - type: textarea attributes: @@ -59,6 +63,7 @@ inputs: description: | A clear and concise description of what the bug is. If the issue is visual in nature, consider posting a screenshot. + validations: required: true - type: textarea attributes: @@ -69,4 +74,5 @@ inputs: 2. 3. ... + validations: required: true diff --git a/.github/ISSUE_TEMPLATE/enhancements.yml b/.github/ISSUE_TEMPLATE/enhancements.yml index 8ec1990a9..16d62bc97 100644 --- a/.github/ISSUE_TEMPLATE/enhancements.yml +++ b/.github/ISSUE_TEMPLATE/enhancements.yml @@ -4,8 +4,8 @@ title: '' labels: 'Type: Enhancement' assignees: '' issue_body: true -inputs: -- type: description +body: +- type: markdown attributes: value: | Thank you for taking the time to fill out an issue. This template is meant for feature requests and improvements to already existing functionality. @@ -14,10 +14,12 @@ inputs: attributes: label: "What component of Red (cog, command, API) would you like to see improvements on?" placeholder: Audio + validations: required: true - type: textarea attributes: label: "Describe the enhancement you're suggesting." - required: true description: | Feel free to describe in as much detail as you wish. + validations: + required: true diff --git a/.github/ISSUE_TEMPLATE/feature_request.yml b/.github/ISSUE_TEMPLATE/feature_request.yml index 11ae4a648..56b798d12 100644 --- a/.github/ISSUE_TEMPLATE/feature_request.yml +++ b/.github/ISSUE_TEMPLATE/feature_request.yml @@ -4,22 +4,24 @@ title: '' labels: 'Type: Feature' assignees: '' issue_body: true -inputs: -- type: description +body: +- type: markdown attributes: value: | Thank you for taking the time to fill out an issue, this template is meant for any feature suggestions. If you require help with installing Red we ask that you join our [Discord server](https://discord.gg/red) -- type: multi_select +- type: dropdown attributes: label: "Type of feature request" description: "What type of feature would you like to request?" - required: true - choices: + multiple: true + options: - API functionality - Cog - Command - Other + validations: + required: true - type: textarea attributes: label: "Description of the feature you're suggesting" @@ -41,5 +43,6 @@ inputs: - Include what cog it should be in and a name for the command - Describe the intended functionality for the command - Note any restrictions on who can use the command or where it can be used + validations: required: true diff --git a/.github/ISSUE_TEMPLATE/other_bugs.yml b/.github/ISSUE_TEMPLATE/other_bugs.yml index d09016ecc..bac7fcd85 100644 --- a/.github/ISSUE_TEMPLATE/other_bugs.yml +++ b/.github/ISSUE_TEMPLATE/other_bugs.yml @@ -4,8 +4,8 @@ title: '' labels: 'Type: Bug' assignees: '' issue_body: true -inputs: -- type: description +body: +- type: markdown attributes: value: | Thank you for taking the time to fill out an issue. This template is meant for any issues not related to any existing command. @@ -14,20 +14,24 @@ inputs: attributes: label: "What Red version are you using?" placeholder: 3.4.5 + validations: required: true - type: textarea attributes: label: "What were you trying to do?" + validations: required: true - type: textarea attributes: label: "What did you expect to happen?" + validations: required: true - type: textarea attributes: label: "What actually happened?" description: | If the issue is visual in nature, consider posting a screenshot. + validations: required: true - type: textarea attributes: @@ -39,4 +43,5 @@ inputs: 2. 3. ... + validations: required: true