Conventional Commit

The Conventional Commits specification is a lightweight convention on top of commit messages

This will be useful for Git Actions and triggering automation on this convention:

The Conventional Commits specification is a lightweight convention on top of commit messages. It provides an easy set of rules for creating an explicit commit history; which makes it easier to write automated tools on top of. This convention dovetails with SemVerarrow-up-right, by describing the features, fixes, and breaking changes made in commit messages.

The commit message should be structured as follows:

<type>[optional scope]: <description>

[optional body]

[optional footer(s)]

https://dev.to/technolaaji/writing-proper-git-commits-4g06arrow-up-right

Last updated