mirror of
https://github.com/TheAlgorithms/Python.git
synced 2024-11-27 15:01:08 +00:00
feat: basic issue forms (#6533)
This commit is contained in:
parent
346b0a8466
commit
cabd8c6382
54
.github/ISSUE_TEMPLATE/bug_report.yaml
vendored
Normal file
54
.github/ISSUE_TEMPLATE/bug_report.yaml
vendored
Normal file
|
@ -0,0 +1,54 @@
|
|||
name: Bug report
|
||||
description: Create a bug report to help us address errors in the repository
|
||||
labels: [bug]
|
||||
body:
|
||||
- type: markdown
|
||||
attributes:
|
||||
value: |
|
||||
Before requesting please search [existing issues](https://github.com/TheAlgorithms/Python/labels/bug).
|
||||
Usage questions such as "How do I...?" belong on the
|
||||
[Discord](https://discord.gg/c7MnfGFGa6) and will be closed.
|
||||
|
||||
- type: input
|
||||
attributes:
|
||||
label: "Repository commit"
|
||||
description: |
|
||||
The commit hash for `TheAlgorithms/Python` repository. You can get this
|
||||
by running the command `git rev-parse HEAD` locally.
|
||||
placeholder: "a0b0f414ae134aa1772d33bb930e5a960f9979e8"
|
||||
validations:
|
||||
required: true
|
||||
|
||||
- type: input
|
||||
attributes:
|
||||
label: "Python version (python --version)"
|
||||
placeholder: "Python 3.10.7"
|
||||
validations:
|
||||
required: true
|
||||
|
||||
- type: input
|
||||
attributes:
|
||||
label: "Dependencies version (pip freeze)"
|
||||
description: |
|
||||
This is the output of the command `pip freeze --all`. Note that the
|
||||
actual output might be different as compared to the placeholder text.
|
||||
placeholder: |
|
||||
appnope==0.1.3
|
||||
asttokens==2.0.8
|
||||
backcall==0.2.0
|
||||
...
|
||||
validations:
|
||||
required: true
|
||||
|
||||
- type: textarea
|
||||
attributes:
|
||||
label: "Expected behavior"
|
||||
description: "Describe the behavior you expect. May include images or videos."
|
||||
validations:
|
||||
required: true
|
||||
|
||||
- type: textarea
|
||||
attributes:
|
||||
label: "Actual behavior"
|
||||
validations:
|
||||
required: true
|
5
.github/ISSUE_TEMPLATE/config.yaml
vendored
Normal file
5
.github/ISSUE_TEMPLATE/config.yaml
vendored
Normal file
|
@ -0,0 +1,5 @@
|
|||
blank_issues_enabled: false
|
||||
contact_links:
|
||||
- name: Discord community
|
||||
url: https://discord.gg/c7MnfGFGa6
|
||||
about: Have any questions or need any help? Please contact us via Discord
|
26
.github/ISSUE_TEMPLATE/feature_request.yaml
vendored
Normal file
26
.github/ISSUE_TEMPLATE/feature_request.yaml
vendored
Normal file
|
@ -0,0 +1,26 @@
|
|||
name: Feature request
|
||||
description: Suggest features, propose improvements, discuss new ideas.
|
||||
labels: [enhancement]
|
||||
body:
|
||||
- type: markdown
|
||||
attributes:
|
||||
value: |
|
||||
Before requesting please search [existing issues](https://github.com/TheAlgorithms/Python/labels/enhancement).
|
||||
Usage questions such as "How do I...?" belong on the
|
||||
[Discord](https://discord.gg/c7MnfGFGa6) and will be closed.
|
||||
|
||||
- type: textarea
|
||||
attributes:
|
||||
label: "Feature description"
|
||||
description: |
|
||||
This could be new algorithms, data structures or improving any existing
|
||||
implementations.
|
||||
validations:
|
||||
required: true
|
||||
|
||||
- type: checkboxes
|
||||
attributes:
|
||||
label: Would you like to work on this feature?
|
||||
options:
|
||||
- label: Yes, I want to work on this feature!
|
||||
required: false
|
Loading…
Reference in New Issue
Block a user