Enforce angular commit message convention with minimal dependancy only
git and bash.
Explore the docs »
Report Bug
·
Request Feature
The provided script enforce Angular commit message convention, with an opinionated reduction of allowed types. Moreover, it enforces reference to a project management tools named JIRA.
Each commit message consists of a header, a body and a footer. The header has a special format that includes a type, a scope andi a subject:
<type>(<scope>): <subject>
<BLANK LINE>
<body>
<BLANK LINE>
<footer>
- The first line of the commit message (the "Subject") cannot be longer than 70 characters.
- Any other line of the commit message cannot be longer 100 characters!
- The body and footer are optional, but depends on the type, information can be mandatory.
This allows the message to be easier to read on github as well as in various git tools.
Must be one of the following:
- feat: A new feature
- fix: A bug fix
- docs: Documentation only changes
- lint: Changes that do not affect the meaning of the code (white-space, formatting, missing semicolons, etc)
- refactor: A code change that neither fixes a bug or adds a feature
- test: Adding missing tests or correcting existing tests
- chore: Changes to the build process or auxiliary tools and libraries such as distribution generation
The scope could be anything specifying place of the commit change. For example `notification', 'dropdown', etc. The scope must be written in kebab-case.
A brief but meaningfull description of the change. Here are recommandations for writing your subject:
- use the imperative, present tense: "change" not "changed" nor "changes"
- don't capitalize first letter
- no "." (dot) at the end
The body should include the motivation for the change and contrast this with previous behavior. It is optional but highly recommended for any impacting changes.
The footer should contain any information about Breaking Changes and is also the place to reference JIRA ticket related to this commit.
The footer is optional but for feat and fix type the JIRA reference is mandatory.
The breaking changes must be at the end of the commit with only "BROKEN:" before the list of breaking changes. They must be each on a new line.
feat(toto-service): provide toto for all
Before we had to do another thing. There was this and this problem.
Now, by using "toto", it's simpler and the problems are managed.
LUM-3462
BROKEN:
first thing broken
second thing broken
The proper for revert based on Angular commit message convention should be:
revert: feat(toto-service): provide toto for all
This reverts commit <sha1>.
However, the default git behavior, that cannot be easily overiden is:
Revert "feat(toto-service): provide toto for all"
This reverts commit <sha1>.
Thus we won't enforce one or the other, we will only enfore:
- starting the commit title with revert (with a capitalized letter or not)
- having the sentence "This reverts commit <sha1>"
To get a local copy up and running follow these steps.
-
Install bash
sudo apt install bash
-
Install bats for development testing
sudo apt install bats
-
Clone the commit-message-validator
git clone https://github.com/lumapps/commit-message-validator.git
That's all, your ready to go !
Check the commit message referenced by <commit1>:
./check.sh <commit1>
Check all the commits between 2 references:
./check.sh <commit1>..<commit2>
Behind the hood, the script use git log
to list all the commit thus any
syntax allowed by git will be working.
You can also use the pre-push commit validator, simply copy, pre-push
,
validator.sh
and check.sh
files
in .git/hooks
directory of your repository.
- if
COMMIT_VALIDATOR_NO_JIRA
environment variable is not empty, no validation is done on JIRA refs. - if
COMMIT_VALIDATOR_ALLOW_TEMP
environment variable is not empty, no validation is done onfixup!
andsquash!
commits. - if
COMMIT_VALIDATOR_NO_REVERT_SHA1
environment variable is not empty, no validation is done revert commits.
You want to use the predefined commit template to keep the main information under hand.
For that, you have to add the following lines in your repository's gitconfig
(located at <project_root>/.gitconfig
).
[commit]
template = /path/to/git-commit-template
To enable the action simply create the .github/workflows/commit-message-validator.yml file with the following content:
name: "Commit message validation on pull request"
on: pull_request
jobs:
commit-message-validation:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Commit message validation
uses: lumapps/commit-message-validator@master
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- if
no_jira
is not empty, no validation is done on JIRA refs. - if
allow_temp
is not empty, no validation is done onfixup!
andsquash!
commits. - if
no_revert_sha1
is not empty, no validation is done on revert commits. jira_in_header
jira reference can be put in the commit header.header_length
allow to override the max length of the header line.jira_types
takes a space separated list"feat fix"
as a parameter to override the default types requiring a jira
If you are using pre-commit in you repository, you can add this to your configuration so commit messages are checked locally:
Into .pre-commit-config.yaml
:
default_stages: [commit]
repos:
- repo: https://github.com/lumapps/commit-message-validator
rev: master
hooks:
- id: commit-message-validator
stages: [commit-msg]
args: [--allow-temp]
default_stages
tells which stage to install hooks that do not specify
a stages
option.
Then run pre-commit install --hook-type commit-msg
to install the
commit-message-validator
- if
no-jira
is set, no validation is done on JIRA refs. - if
allow-temp
is set, no validation is done onfixup!
andsquash!
commits. - if
no-revert-sha1
is set, no validation is done on revert commits. - if
--jira-in-header
jira reference can be put in the commit header. --header-length
allow to override the max length of the header line.--jira-types
takes a space separated list"feat fix"
as a parameter to override the default types requiring a jira
See the open issues for a list of proposed features (and known issues).
- list all the commit, and run validation on each
- enforce the overall commit message structure
- enforce the overall commit header structure
- enforce the overall commit header length
- enforce the commit type
- enforce the commit scope
- enforce the commit subject
- enforce the commit body length
- enforce the JIRA reference
- enforce the BROKEN part length
- avoid trailing space
- allow automated revert commit
- allow fixup! and squash! commit with an option
- allow to not check JIRA reference with an option
- enforce subject length (3 words at least)
Contributions are what make the open source community such an amazing place to be learn, inspire, and create. Any contributions you make are greatly appreciated.
- Fork the Project
- Create your Feature Branch (
git checkout -b feature/AmazingFeature
) - Commit your Changes (
git commit -m 'Add some AmazingFeature'
) - Run the tests (
bats -j 100 validator.bats
) - Push to the Branch (
git push origin feature/AmazingFeature
) - Open a pull request
Distributed under the MIT License. See LICENSE
for more information.
Project Link: https://github.com/lumapps/commit-message-validator
Icons made by Freepik from www.flaticon.com