Add CI workflows and repository templates
CI / ci (push) Successful in 2m28s

This commit is contained in:
2026-03-01 17:01:19 +01:00
parent 23a2c8c623
commit f6d3e0d681
29 changed files with 2323 additions and 1 deletions
+51
View File
@@ -0,0 +1,51 @@
name: Task / To-Do
about: Track a task with subtasks, owner, and effort estimate
title: "[Task] "
labels:
- task
body:
- type: textarea
id: description
attributes:
label: Description
description: Detailed description of the task and expected outcome.
validations:
required: true
- type: input
id: assignee
attributes:
label: Owner
description: Who is responsible for this task?
placeholder: "@username"
- type: textarea
id: subtasks
attributes:
label: Subtasks
description: Break down the work into subtasks.
placeholder: |
- [ ] Subtask 1 — description
- [ ] Subtask 2 — description
- [ ] Subtask 3 — description
validations:
required: true
- type: input
id: effort
attributes:
label: Estimated Effort
description: "Time estimate, e.g. 2d, 4h."
placeholder: "e.g. 4h, 2d"
- type: textarea
id: dependencies
attributes:
label: Dependencies
description: List any blocking issues or PRs.
- type: textarea
id: acceptance
attributes:
label: Acceptance Criteria
description: What needs to be true for this task to be considered done.