-
Notifications
You must be signed in to change notification settings - Fork 178
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1794 from andrewballantyne/new-issue-templates
Add UX and Tracker internal templates
- Loading branch information
Showing
2 changed files
with
117 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,64 @@ | ||
name: (Internal) Tracker Template | ||
description: Intended to help with a template for tracking larger grouped items. | ||
title: "[Tracker]: " | ||
labels: ["tracker"] | ||
body: | ||
- type: textarea | ||
id: description | ||
attributes: | ||
label: Description | ||
description: A introductory description of the larger task | ||
validations: | ||
required: | ||
true | ||
- type: input | ||
id: branch | ||
attributes: | ||
label: Target Branch | ||
description: What is the feature branch to contain this effort? If not known at this time, replace with `TBD` | ||
placeholder: f/ | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: requirements | ||
attributes: | ||
label: Requirements | ||
description: A series of requirements to consider this tracker complete. | ||
placeholder: | | ||
* P0: Show something | ||
* P2: Allow users to change permissions | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: ux-issues | ||
attributes: | ||
label: Itemized UX Issues | ||
description: | | ||
List the tickets that UX will work on. | ||
Tip: Using a bullet list will help display links to other tickets by unraveling the name and status of that ticket. | ||
placeholder: | | ||
* #1234 | ||
* Design mocks - Ticket TBD | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: dev-issues | ||
attributes: | ||
label: Itemized Dev Issues | ||
description: | | ||
List the tickets that Development will work on. If unknown at this time, add `TBD` | ||
Tip: Using a bullet list will help display links to other tickets by unraveling the name and status of that ticket. | ||
placeholder: | | ||
* #1234 | ||
* Implement Table Page - Ticket TBD | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: artifacts | ||
attributes: | ||
label: Related artifacts | ||
description: Any additional artifacts that will help with the tracker goals | ||
validations: | ||
required: false |
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,53 @@ | ||
name: (Internal) UX Template | ||
description: Intended to help ux create internal flows. | ||
title: "[UX]: " | ||
labels: ["kind/ux"] | ||
body: | ||
- type: textarea | ||
id: description | ||
attributes: | ||
label: Description | ||
description: A introductory description of the task | ||
validations: | ||
required: | ||
true | ||
- type: textarea | ||
id: goals | ||
attributes: | ||
label: Goals | ||
description: An itemized list of goals to complete for this ticket | ||
placeholder: | | ||
* Research... | ||
* Design... | ||
validations: | ||
required: false | ||
- type: textarea | ||
id: output | ||
attributes: | ||
label: Expected Output | ||
description: What would be considered the end result? | ||
validations: | ||
required: false | ||
- type: textarea | ||
id: related-issues | ||
attributes: | ||
label: Related Issues | ||
description: | | ||
Any related issues that might be useful to mention as it relates to this ticket's goals, expectations, or follow ups. | ||
Tip: Using a bullet list will help display links to other tickets by unraveling the name and status of that ticket. | ||
placeholder: | | ||
* #1234 | ||
* Create figma designs - Ticket TBD | ||
validations: | ||
required: false | ||
- type: textarea | ||
id: artifacts | ||
attributes: | ||
label: Completed artifacts | ||
description: | | ||
Any artifacts you want to easily note as results of the effort. | ||
Typically this is left empty at the start. Also useful to include useful links or information you would like to share for additional context. | ||
validations: | ||
required: false |