Add the Gitea issue templates (slice/bug/adr-proposal) and a PR template that carry the Definition of Done, a git-cliff config (cliff.toml) with a `make changelog` target, the generated CHANGELOG.md, and docs/gitea- workflow.md documenting the issue -> milestone -> PR flow. Verified: make lint/build/unit green; `make changelog` regenerates the changelog from Conventional Commits. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
24 lines
900 B
Markdown
24 lines
900 B
Markdown
<!-- Title: Conventional Commit style, e.g. feat(bff): … (closes #NN) -->
|
|
|
|
## What & why
|
|
|
|
<!-- Summary of the change and the slice/bug it addresses. -->
|
|
|
|
Closes #
|
|
|
|
## Definition of Done
|
|
|
|
- [ ] Linked Gitea issue (above).
|
|
- [ ] Failing test committed before the implementation.
|
|
- [ ] Implementation makes the test pass; refactor commit if structure improved.
|
|
- [ ] Conventional Commits referencing the issue (`refs #NN`).
|
|
- [ ] CI green — all Gitea Actions jobs (or `make ci` green while no runner exists).
|
|
- [ ] `docker compose up` from a fresh clone reaches green health checks within 3 minutes.
|
|
- [ ] Docs updated if behaviour, contracts, or operations changed.
|
|
- [ ] ADR added in `docs/architecture/` if a non-obvious decision was made.
|
|
- [ ] Demo note in `docs/demo-script.md` if user-visible.
|
|
|
|
## Notes for reviewers
|
|
|
|
<!-- Anything that helps review: trade-offs, follow-ups, known gaps. -->
|