Update issue templates for migration
This commit is contained in:
parent
a8f44174ba
commit
0203d0339b
22
.github/ISSUE_TEMPLATE/bug_report.yml
vendored
22
.github/ISSUE_TEMPLATE/bug_report.yml
vendored
@ -2,8 +2,8 @@ name: Bug Report
|
|||||||
about: Report broken or incorrect behaviour
|
about: Report broken or incorrect behaviour
|
||||||
labels: bug
|
labels: bug
|
||||||
issue_body: true
|
issue_body: true
|
||||||
inputs:
|
body:
|
||||||
- type: description
|
- type: markdown
|
||||||
attributes:
|
attributes:
|
||||||
value: >
|
value: >
|
||||||
Thanks for taking the time to fill out a bug.
|
Thanks for taking the time to fill out a bug.
|
||||||
@ -14,48 +14,54 @@ inputs:
|
|||||||
attributes:
|
attributes:
|
||||||
label: Summary
|
label: Summary
|
||||||
description: A simple summary of your bug report
|
description: A simple summary of your bug report
|
||||||
|
validations:
|
||||||
required: true
|
required: true
|
||||||
- type: textarea
|
- type: textarea
|
||||||
attributes:
|
attributes:
|
||||||
label: Reproduction Steps
|
label: Reproduction Steps
|
||||||
required: true
|
|
||||||
description: >
|
description: >
|
||||||
What you did to make it happen.
|
What you did to make it happen.
|
||||||
Ideally there should be a short code snippet in this section to help reproduce the bug.
|
Ideally there should be a short code snippet in this section to help reproduce the bug.
|
||||||
|
validations:
|
||||||
|
required: true
|
||||||
- type: textarea
|
- type: textarea
|
||||||
attributes:
|
attributes:
|
||||||
label: Expected Results
|
label: Expected Results
|
||||||
required: true
|
|
||||||
description: >
|
description: >
|
||||||
What did you expect to happen?
|
What did you expect to happen?
|
||||||
|
validations:
|
||||||
|
required: true
|
||||||
- type: textarea
|
- type: textarea
|
||||||
attributes:
|
attributes:
|
||||||
label: Actual Results
|
label: Actual Results
|
||||||
required: true
|
|
||||||
description: >
|
description: >
|
||||||
What actually happened?
|
What actually happened?
|
||||||
|
validations:
|
||||||
|
required: true
|
||||||
- type: input
|
- type: input
|
||||||
attributes:
|
attributes:
|
||||||
label: Intents
|
label: Intents
|
||||||
required: true
|
|
||||||
description: >
|
description: >
|
||||||
What intents are you using for your bot?
|
What intents are you using for your bot?
|
||||||
This is the `discord.Intents` class you pass to the client.
|
This is the `discord.Intents` class you pass to the client.
|
||||||
|
validations:
|
||||||
|
required: true
|
||||||
- type: textarea
|
- type: textarea
|
||||||
attributes:
|
attributes:
|
||||||
label: System Information
|
label: System Information
|
||||||
required: true
|
|
||||||
description: >
|
description: >
|
||||||
Run `python -m discord -v` and paste this information below.
|
Run `python -m discord -v` and paste this information below.
|
||||||
|
|
||||||
This command required v1.1.0 or higher of the library. If this errors out then show some basic
|
This command required v1.1.0 or higher of the library. If this errors out then show some basic
|
||||||
information involving your system such as operating system and Python version.
|
information involving your system such as operating system and Python version.
|
||||||
|
validations:
|
||||||
|
required: true
|
||||||
- type: checkboxes
|
- type: checkboxes
|
||||||
attributes:
|
attributes:
|
||||||
label: Checklist
|
label: Checklist
|
||||||
description: >
|
description: >
|
||||||
Let's make sure you've properly done due dilligence when reporting this issue!
|
Let's make sure you've properly done due dilligence when reporting this issue!
|
||||||
choices:
|
options:
|
||||||
- label: I have searched the open issues for duplicates.
|
- label: I have searched the open issues for duplicates.
|
||||||
required: true
|
required: true
|
||||||
- label: I have shown the entire traceback, if possible.
|
- label: I have shown the entire traceback, if possible.
|
||||||
|
12
.github/ISSUE_TEMPLATE/feature_request.yml
vendored
12
.github/ISSUE_TEMPLATE/feature_request.yml
vendored
@ -2,28 +2,32 @@ name: Feature Request
|
|||||||
about: Suggest a feature for this library
|
about: Suggest a feature for this library
|
||||||
labels: feature request
|
labels: feature request
|
||||||
issue_body: true
|
issue_body: true
|
||||||
inputs:
|
body:
|
||||||
- type: input
|
- type: input
|
||||||
attributes:
|
attributes:
|
||||||
label: Summary
|
label: Summary
|
||||||
description: >
|
description: >
|
||||||
A short summary of what your feature request is.
|
A short summary of what your feature request is.
|
||||||
|
validations:
|
||||||
required: true
|
required: true
|
||||||
- type: dropdown
|
- type: dropdown
|
||||||
attributes:
|
attributes:
|
||||||
|
multiple: false
|
||||||
label: What is the feature request for?
|
label: What is the feature request for?
|
||||||
required: true
|
options:
|
||||||
choices:
|
|
||||||
- The core library
|
- The core library
|
||||||
- discord.ext.commands
|
- discord.ext.commands
|
||||||
- discord.ext.tasks
|
- discord.ext.tasks
|
||||||
- The documentation
|
- The documentation
|
||||||
|
validations:
|
||||||
|
required: true
|
||||||
- type: textarea
|
- type: textarea
|
||||||
attributes:
|
attributes:
|
||||||
label: The Problem
|
label: The Problem
|
||||||
description: >
|
description: >
|
||||||
What problem is your feature trying to solve?
|
What problem is your feature trying to solve?
|
||||||
What becomes easier or possible when this feature is implemented?
|
What becomes easier or possible when this feature is implemented?
|
||||||
|
validations:
|
||||||
required: true
|
required: true
|
||||||
- type: textarea
|
- type: textarea
|
||||||
attributes:
|
attributes:
|
||||||
@ -31,10 +35,12 @@ inputs:
|
|||||||
description: >
|
description: >
|
||||||
What is your ideal solution to the problem?
|
What is your ideal solution to the problem?
|
||||||
What would you like this feature to do?
|
What would you like this feature to do?
|
||||||
|
validations:
|
||||||
required: true
|
required: true
|
||||||
- type: textarea
|
- type: textarea
|
||||||
attributes:
|
attributes:
|
||||||
label: The Current Solution
|
label: The Current Solution
|
||||||
description: >
|
description: >
|
||||||
What is the current solution to the problem, if any?
|
What is the current solution to the problem, if any?
|
||||||
|
validations:
|
||||||
required: false
|
required: false
|
||||||
|
Loading…
x
Reference in New Issue
Block a user