mirror of
https://github.com/TheAlgorithms/JavaScript.git
synced 2025-12-19 06:58:15 +08:00
* Adding new issue template * Adding bug issue template * Adding feature request template * Removing feature request template and adding comments * Converting bug template to yaml * Adding new feature request template * CR changes part 1 * CR changes part 2 * CR changes part 3 * CR changes part 4 * CR changes part 5 * Removing specifications section
32 lines
1.1 KiB
YAML
32 lines
1.1 KiB
YAML
name: Feature request
|
|
description: 'Suggest features, propose improvements, discuss new ideas'
|
|
title: '[FEATURE]: '
|
|
labels: ['enhancement']
|
|
body:
|
|
- type: markdown
|
|
attributes:
|
|
value: |
|
|
## This issue template is not for requesting new algorithms. For new algorithms, PRs should be opened directly.
|
|
## Make sure your issue isn't a duplicate and you follow our [contributing guidelines](https://github.com/TheAlgorithms/JavaScript/blob/master/CONTRIBUTING.md)
|
|
- type: textarea
|
|
id: description
|
|
attributes:
|
|
label: Motivation
|
|
description: Describe what is the motivation behind this feature.
|
|
validations:
|
|
required: true
|
|
- type: textarea
|
|
id: examples
|
|
attributes:
|
|
label: Examples
|
|
description: If possible, provide examples of how this feature can be used.
|
|
validations:
|
|
required: false
|
|
- type: textarea
|
|
id: workarounds
|
|
attributes:
|
|
label: Possible workarounds
|
|
description: If possible, describes possible workarounds to this feature.
|
|
validations:
|
|
required: false
|