Follow the Conventional Commits specification.
Based on: https://flank.github.io/flank/pr_titles/
Pull request titles must follow this format: <type>([optional scope]): <description>
<type>
β One of the allowed commit types listed below.[optional scope]
β Additional context or the module/component being changed (optional).<description>
β A concise summary of the change.<type>
Valuesbuild
β Changes to the build system or external dependencies (e.g., updating dependencies).chore
β Routine tasks that don't affect code behaviour (e.g., manual release note updates).ci
β Changes to the CI configuration files and scripts (typically inside .github/workflows
).docs
β Documentation-only changes.feat
β A new feature.fix
β A bug fix.perf
β Code changes that improve performance.refactor
β Code changes that improve structure without changing behaviour.style
β Code style changes that donβt affect logic (e.g., formatting, whitespace).