Add Gitea Actions workflows, CI config, and docs
Some checks failed
Docker / docker (push) Successful in 6s
Security / security (push) Successful in 6s
Deploy / deploy-local-runner (push) Has been cancelled
CI / ci (push) Successful in 1m42s
Deploy / deploy-ssh (push) Successful in 7s

This commit is contained in:
2026-02-28 20:40:14 +01:00
parent 3b48b39561
commit 8cadb2d216
35 changed files with 3216 additions and 0 deletions

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.