-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
story(contrib): add story issue template (#10)
* contrib(issue-8): added story issue template * refactor(issue-8): move folder
- Loading branch information
Showing
1 changed file
with
28 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
name: Story | ||
description: Represents stories | ||
title: "story(subject): short description" | ||
labels: ["story"] | ||
body: | ||
- type: textarea | ||
id: description | ||
attributes: | ||
label: Description | ||
description: Please provide an informal, general explanation of the work needed to be done, written from the perspective of the end user. | ||
validations: | ||
required: true | ||
|
||
- type: textarea | ||
id: acceptance-criteria | ||
attributes: | ||
label: Acceptance Criteria | ||
description: List the criteria for accepting this story as done | ||
validations: | ||
required: true | ||
|
||
- type: textarea | ||
id: related-issues | ||
attributes: | ||
label: Related Issues | ||
description: Please reference any other related issue, for example, if this story was created to address a bug report, reference the bug report issue here | ||
validations: | ||
required: false |