Skip to content

Commit

Permalink
feature request issue template
Browse files Browse the repository at this point in the history
  • Loading branch information
Eduardo Leao authored and Eduardo Leao committed Apr 6, 2024
1 parent 905fe9e commit b8b3c99
Showing 1 changed file with 49 additions and 1 deletion.
50 changes: 49 additions & 1 deletion .github/ISSUE_TEMPLATE/feature-request.yml
Original file line number Diff line number Diff line change
@@ -1 +1,49 @@

name: New feature
description: Suggest or request a new feature for js-torch. Please fill out the template to help make it more clear!
labels: ["enhancement"]
body:
- type: markdown
attributes:
value: |
Thank you for taking the time to share this feature idea!
These following steps are to make sure the idea is as clear as possible, leading to a quicker and easier implementation.
- type: textarea
id: description
attributes:
label: Describe the Feature
description: Please give a clear and concise description of the new feature. Explain what it would do, and use cases.
placeholder: A new operation that does (X, Y) -> Z.
validations:
required: true
- type: textarea
id: motivation
attributes:
label: Motivation [optional]
description: Optionally provide some motivation relative to why this feature would be useful.
placeholder: This feature would be usefull to X.
- type: textarea
id: code
validations:
required: true
attributes:
label: Sample Code
description: |
Optionally write some pseudo-code showing what you would like the feature to do.
* If possible, add comments to your code to explain the steps.
placeholder: |
The following code should return the result:
```typescript
function newProposedFunction(arg1, arg2) {
// Add some comments to briefly explain logic (if possible).
return result;
}
```
- type: dropdown
id: assign
attributes:
label: "Would you like to work on this issue?"
options:
- "Yes"

0 comments on commit b8b3c99

Please sign in to comment.