Commit Convention¶
This repository follows a simplified Conventional Commits format.
Format¶
Scopes are optional and should only be used when they add useful context.
Types¶
feat¶
Introduces a new feature or capability.
Examples
fix¶
Fixes a bug or incorrect behavior.
Examples
refactor¶
Changes code structure without changing behavior.
Examples
perf¶
Improves performance without changing functionality.
Examples
test¶
Adds, updates, or fixes automated tests.
Examples
docs¶
Documentation only changes.
Examples
style¶
Formatting and code style changes that do not affect functionality.
Examples
build¶
Changes related to build systems, packaging, or dependency management configuration.
Examples
ci¶
Changes to CI/CD pipelines and automation workflows.
Examples
chore¶
Repository maintenance and housekeeping tasks.
This type is commonly used for dependency updates.
Examples
revert¶
Reverts a previous commit.
Examples