-
Notifications
You must be signed in to change notification settings - Fork 333
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 #2302 from alphagov/ldeb-add-tech-debt-template
Add tech debt issue template
- Loading branch information
Showing
1 changed file
with
62 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,62 @@ | ||
name: Tech debt | ||
description: For internal use only - Issue template for tracking technical debt | ||
labels: [tech debt, awaiting triage] | ||
|
||
body: | ||
- type: markdown | ||
attributes: | ||
value: | | ||
This is a template for creating issues that describe technical debt. | ||
It is based off the [example in the GDS Way page on tracking technical debt](https://gds-way.cloudapps.digital/standards/technical-debt.html#example). | ||
- type: textarea | ||
attributes: | ||
label: Cause | ||
validations: | ||
required: true | ||
|
||
- type: textarea | ||
attributes: | ||
label: Consequences | ||
validations: | ||
required: true | ||
|
||
- type: dropdown | ||
attributes: | ||
label: Impact of debt | ||
options: [Low, Medium, High] | ||
validations: | ||
required: true | ||
|
||
- type: textarea | ||
attributes: | ||
label: Reason (impact of debt) | ||
validations: | ||
required: false | ||
|
||
- type: dropdown | ||
attributes: | ||
label: Effort to pay down | ||
options: [Low, Medium, High] | ||
validations: | ||
required: true | ||
|
||
- type: textarea | ||
attributes: | ||
label: Reason (effort to pay down) | ||
validations: | ||
required: false | ||
|
||
- type: dropdown | ||
attributes: | ||
label: Overall rating | ||
options: [Low, Medium, High] | ||
validations: | ||
required: true | ||
|
||
- type: textarea | ||
attributes: | ||
label: Reason (overall rating) | ||
validations: | ||
required: false |