Files
old.cms.fellies.org/docs/workflow.md
Citali 6b282ce56b
Some checks failed
CMS CI / Governance Checks (push) Successful in 1m7s
CMS CI / Lint Typecheck Unit E2E (push) Failing after 5m40s
chore(changelog): include unreleased and full commit output
2026-02-12 20:43:05 +01:00

43 lines
782 B
Markdown

# Workflow
## Branching Model
Follow `BRANCHING.md`:
- Long-lived: `main`, `staging`, `dev`
- Task branches: `todo/*`, `refactor/*`, `code/*`
## Promotion Path
1. Task branch -> `dev`
2. `dev` -> `staging`
3. `staging` -> `main`
## Quality Gates
- `bun run check`
- `bun run typecheck`
- `bun run test`
- `bun run test:e2e`
## Changelog
- Conventional commits required (see `CONTRIBUTING.md`)
- Generate changelog with release-focused sections and `Unreleased`:
```bash
bun run changelog:release
```
- For exhaustive output across all allowed commit types:
```bash
bun run changelog:full:preview
```
## Governance
- Branch and PR governance checks run in `.gitea/workflows/ci.yml`.
- PR template: `.gitea/PULL_REQUEST_TEMPLATE.md`
- Versioning policy: `VERSIONING.md`