-
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.
Merge pull request #130 from ubiquity/feature/add-issue-template
feat: add issue template
- Loading branch information
Showing
2 changed files
with
119 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,55 @@ | ||
name: BizDev Task Proposal | ||
description: Standard template for bizdev task proposals at Ubiquity | ||
title: "Descriptive title starting with a verb" | ||
labels: [] | ||
body: | ||
- type: markdown | ||
attributes: | ||
value: | | ||
Examples: | ||
- "Add drippi.ai automation to Marketing Tech Stack" | ||
- "Create Standard Operating Procedures for Outreach Team" | ||
- "Manage the Consensus HK Campaign" | ||
- type: checkboxes | ||
id: time-estimate-confirmation | ||
attributes: | ||
label: Time Estimate | ||
description: Go to "Labels" and type "Time:". Select the appropriate time estimate. | ||
options: | ||
- label: I have added a time estimate label | ||
validations: | ||
required: true | ||
|
||
- type: textarea | ||
id: background | ||
attributes: | ||
label: Background Information | ||
description: | ||
placeholder: Explain the context and why this is needed... | ||
validations: | ||
required: true | ||
|
||
- type: textarea | ||
id: completion-criteria | ||
attributes: | ||
label: Completion Criteria | ||
description: | ||
placeholder: | | ||
- Deliverable specification... | ||
- Measurable goal/metric... | ||
- Additional requirements... | ||
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 |
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 |