Skip to content

Commit

Permalink
Merge pull request #1794 from andrewballantyne/new-issue-templates
Browse files Browse the repository at this point in the history
Add UX and Tracker internal templates
  • Loading branch information
openshift-merge-robot authored Sep 18, 2023
2 parents 5e2239a + 9f8ff52 commit e532f4d
Show file tree
Hide file tree
Showing 2 changed files with 117 additions and 0 deletions.
64 changes: 64 additions & 0 deletions .github/ISSUE_TEMPLATE/internal_tracker.yml
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
53 changes: 53 additions & 0 deletions .github/ISSUE_TEMPLATE/internal_ux.yml
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

0 comments on commit e532f4d

Please sign in to comment.