Feature request template (#4055)
* Feture request template * Feture request template * Typos
This commit is contained in:
parent
bb1f78d4e1
commit
677f77771a
2 changed files with 42 additions and 24 deletions
24
.github/ISSUE_TEMPLATE/feature_request.md
vendored
24
.github/ISSUE_TEMPLATE/feature_request.md
vendored
|
@ -1,24 +0,0 @@
|
|||
---
|
||||
name: Feature request
|
||||
about: Suggest an idea for this project
|
||||
|
||||
---
|
||||
|
||||
### What I'm trying to achieve
|
||||
…
|
||||
|
||||
### Describe a proposed solution
|
||||
...
|
||||
|
||||
### Acceptance Criteria
|
||||
<!-- Conditions that a feature must satisfy to be approved by QA
|
||||
Example: When I click on red button a blue popup appears !-->
|
||||
|
||||
- [ ]
|
||||
- [ ]
|
||||
|
||||
### Other solutions I've tried and won't work
|
||||
…
|
||||
|
||||
### Screenshots or mockups
|
||||
<!-- Please provide any illustrations that could help others understand the problem or the proposed solution. -->
|
42
.github/ISSUE_TEMPLATE/feature_request.yml
vendored
Normal file
42
.github/ISSUE_TEMPLATE/feature_request.yml
vendored
Normal file
|
@ -0,0 +1,42 @@
|
|||
name: Feature request
|
||||
description: Publish a new feature request
|
||||
title: "[Feature]: "
|
||||
labels: ["feature"]
|
||||
|
||||
body:
|
||||
- type: textarea
|
||||
id: description
|
||||
attributes:
|
||||
label: Description of the feature
|
||||
description: Describe your goal, use case, or provide context.
|
||||
placeholder: |
|
||||
Example: Users can be more productive when we allow them to bulk update multiple variants at once.
|
||||
We can implement datagrid table that presents all variants, and when clicking in some cell, it will turn into edit mode.
|
||||
validations:
|
||||
required: true
|
||||
- type: textarea
|
||||
id: acceptable-criteria
|
||||
attributes:
|
||||
label: Acceptable criteria
|
||||
description: Provide acceptable criteria for this feature. Describe expected behavior against personas.
|
||||
placeholder: |
|
||||
Example:
|
||||
- [ ] As a user, I should see all variants presented in the datagrid table
|
||||
- [ ] As a user, I should enable edit mode on a given cell when I double-click on it
|
||||
- [ ] As a user, I am able to edit multiple cells and save them at once
|
||||
validations:
|
||||
required: true
|
||||
- type: textarea
|
||||
id: additional-info
|
||||
attributes:
|
||||
label: Additional information
|
||||
description: Attach some additional context. Links, references, UI mockups and so on.
|
||||
placeholder: |
|
||||
Example:
|
||||
Here are the mockups for this datagrid.
|
||||
We consider keeping it simple and similar to the ordinary table.
|
||||
Please look at the attached screenshots:
|
||||
...
|
||||
validations:
|
||||
required: false
|
||||
|
Loading…
Reference in a new issue