-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
refactor: convert issue template to form format
Converts the issue template to a more intuitive YAML form format. Resolves #128
- Loading branch information
1 parent
3cb4e65
commit 2655f98
Showing
2 changed files
with
64 additions
and
23 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
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: Default Issue Template | ||
description: Standard template for creating new issues | ||
title: "[Type] " | ||
labels: ["needs-triage"] | ||
body: | ||
- type: markdown | ||
attributes: | ||
value: | | ||
Thanks for taking the time to fill out this issue! | ||
- type: textarea | ||
id: background | ||
attributes: | ||
label: Background Information | ||
description: Provide context and background for this issue | ||
placeholder: Explain the context and why this issue is needed... | ||
validations: | ||
required: true | ||
|
||
- type: textarea | ||
id: completion-criteria | ||
attributes: | ||
label: Completion Criteria | ||
description: List the specific requirements that need to be met | ||
placeholder: | | ||
- [ ] Deliverable specification... | ||
- [ ] Measurable goal/metric... | ||
- [ ] Additional requirements... | ||
validations: | ||
required: true | ||
|
||
- type: input | ||
id: time-estimate | ||
attributes: | ||
label: Time Estimate | ||
description: Estimated time to complete this task | ||
placeholder: "e.g. 2 days, 1 week" | ||
validations: | ||
required: true | ||
|
||
- type: textarea | ||
id: relevant-links | ||
attributes: | ||
label: Relevant Links | ||
description: Add any relevant links or references | ||
placeholder: | | ||
- [Description of link](URL) | ||
- [Description of link](URL) | ||
- [Description of link](URL) | ||
validations: | ||
required: false | ||
|
||
- type: checkboxes | ||
id: terms | ||
attributes: | ||
label: Checklist | ||
description: Before submitting, please verify | ||
options: | ||
- label: I have added appropriate labels | ||
required: true | ||
- label: I have included a time estimate | ||
required: true | ||
- label: I have provided clear completion criteria | ||
required: true |