Conventional Commitlint
ActionsTags
(2)commitlint
is a tool that lints commit messages according to the Conventional Commits standard. It can be used in GitHub Actions and as a pre-commit hook.
If you have an existing workflow, add the following steps:
...
steps:
...
- name: Conventional Commitlint
uses: opensource-nepal/commitlint@v1
...
If you don't have any workflows, create a new GitHub workflow file, e.g., .github/workflows/commitlint.yaml
:
name: Conventional Commitlint
on:
push:
branches: ['main']
pull_request:
jobs:
commitlint:
runs-on: ubuntu-latest
name: Conventional Commitlint
steps:
- name: Conventional Commitlint
uses: opensource-nepal/commitlint@v1
Note: The
commitlint
GitHub Action is triggered only bypush
,pull_request
, orpull_request_target
events.
# | Name | Type | Default | Description |
---|---|---|---|---|
1 | fail_on_error | Boolean | true |
Whether the GitHub Action should fail if commitlint detects an issue. |
2 | verbose | Boolean | false |
Enables verbose output. |
3 | token | String | secrets.GITHUB_TOKEN |
GitHub Token for fetching commits using the GitHub API. |
# | Name | Type | Description |
---|---|---|---|
1 | exit_code | Integer | The exit code of the commitlint step. |
2 | status | String | The outcome of the commitlint step (success or failure ). |
-
Add the following configuration to
.pre-commit-config.yaml
:repos: ... - repo: https://github.com/opensource-nepal/commitlint rev: v1.3.0 hooks: - id: commitlint ...
-
Install the
commit-msg
hook in your project repository:pre-commit install --hook-type commit-msg
Running only
pre-commit install
will not work.
Note: Avoid using commit messages that start with
#
, as this may cause unexpected behavior withcommitlint
.
For CLI usage, please refer to cli.md.
We appreciate feedback and contributions to this package. To get started, please see our contribution guide.
Resources
Conventional Commitlint is not certified by GitHub. It is provided by a third-party and is governed by separate terms of service, privacy policy, and support documentation.