952 B
952 B
Contributing
Branching
Follow BRANCHING.md for long-lived and task branch rules.
Commit Message Schema
This repository uses Conventional Commits.
Pattern:
<type>(<scope>): <description>
Examples:
feat(admin): add todo priority filterfix(web): handle missing header banner fallbackrefactor(db): split post repository methodstest(e2e): add commission kanban smoke flowchore(ci): add changelog generation step
Recommended types:
featfixrefactorperftestdocsbuildcichorerevert
Rules:
- Keep subject line short and imperative.
- Use scope when possible (
admin,web,db,ci,todo, etc.). - One branch should primarily address one TODO item.
Changelog Process
- Keep commit messages conventional.
- Generate/update
CHANGELOG.mdwith:
bun run changelog:release
- For preview output only:
bun run changelog:preview