diff options
author | 2021-07-19 00:30:43 +0100 | |
---|---|---|
committer | 2021-07-19 00:30:43 +0100 | |
commit | ebbf88b1b657d53799834f0971bfac817c0633e6 (patch) | |
tree | d29518688f04d7f6abc6ff4c2e51b55c789f1863 | |
parent | feat: use text instead of embeds (diff) | |
parent | Update command.yaml (diff) |
Merge branch 'main' of github.com:python-discord/king-arthur into main
-rw-r--r-- | .github/ISSUE_TEMPLATE/command.yaml | 48 |
1 files changed, 48 insertions, 0 deletions
diff --git a/.github/ISSUE_TEMPLATE/command.yaml b/.github/ISSUE_TEMPLATE/command.yaml new file mode 100644 index 0000000..bc71aa4 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/command.yaml @@ -0,0 +1,48 @@ +name: Command Idea +description: Suggest a new command for King Arthur +labels: [command] +assignees: + - jb3 +body: + - type: markdown + attributes: + value: | + Thanks for taking the time to suggest a new command! + - type: input + id: command + attributes: + label: Command Name + description: Example naming for the suggested command + placeholder: e.g. arthur foo bar + validations: + required: false + - type: textarea + id: details + attributes: + label: What should the command do? + validations: + required: true + - type: checkboxes + id: apis + attributes: + label: APIs + description: What APIs would this command interact with? + options: + - label: Cloudflare + - label: Kubernetes + - label: Discord + - label: Other + validations: + required: true + - type: dropdown + id: permissions + attributes: + multiple: true + label: Who should be authorised to use this command? + options: + - DevOps + - Admins + - Helpers + - Everyone + validations: + required: true |