-
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 remote-tracking branch 'upstream/main' into f/pipelines-enhance…
…ment
- Loading branch information
Showing
72 changed files
with
1,819 additions
and
421 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,54 @@ | ||
name: (Internal) Tech Debt Template | ||
description: Intended to help create internal tech debt change. | ||
title: "[Tech Debt]: " | ||
labels: ["kind/tech-debt"] | ||
body: | ||
- type: dropdown | ||
id: deploy-type | ||
attributes: | ||
label: Type | ||
description: What kind of tech debt is it? | ||
multiple: true | ||
options: | ||
- General Tech Debt (eg. Improve the way something exists today) | ||
- Dev Efficiency (eg. CI improvements, issue templates, etc) | ||
- Infrastructure (eg. Add web sockets) | ||
- Quality (eg. tests) | ||
validations: | ||
required: true | ||
- type: input | ||
id: source | ||
attributes: | ||
label: Source | ||
description: Where did you find this issue? | ||
placeholder: main / feature branch x / incubation / etc | ||
validations: | ||
required: false | ||
- type: textarea | ||
id: description | ||
attributes: | ||
label: Description | ||
description: What should we improve? | ||
validations: | ||
required: | ||
true | ||
- type: textarea | ||
id: why | ||
attributes: | ||
label: Why? | ||
description: What value does this bring / what is it fixing? | ||
validations: | ||
required: | ||
true | ||
- type: textarea | ||
id: anything-else | ||
attributes: | ||
label: Anything else? | ||
description: | | ||
Additional information. Suggested topics: | ||
- Initial investigation | ||
- Known impact this will cause | ||
- Anything else you want to add | ||
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,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 |
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
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
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
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
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
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
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
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
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
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
Oops, something went wrong.