mirror of
https://hub.njuu.cf/TheAlgorithms/Python.git
synced 2023-10-11 13:06:12 +08:00
c9f1d09e1a
* fix: GitHub requires `.yml` extension Ref: https://docs.github.com/en/communities/using-templates-to-encourage-useful-issues-and-pull-requests/configuring-issue-templates-for-your-repository#configuring-the-template-chooser * fix: remove newlines from multiline string * fix: use textarea for dependencies list input
27 lines
843 B
YAML
27 lines
843 B
YAML
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
|