Skip to content

Commit

Permalink
Adding the tracker template for issue creation (#91)
Browse files Browse the repository at this point in the history
Signed-off-by: Ramesh Reddy <rareddy@jboss.org>
  • Loading branch information
rareddy committed Oct 26, 2023
1 parent 744273c commit eb05f45
Showing 1 changed file with 64 additions and 0 deletions.
64 changes: 64 additions & 0 deletions .github/ISSUE_TEMPLATE/tracker.md
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

0 comments on commit eb05f45

Please sign in to comment.