We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e301fc1 commit b5ec5b8Copy full SHA for b5ec5b8
.github/workflows/conventional-commit.yml
@@ -9,5 +9,5 @@ jobs:
9
steps:
10
- uses: actions/checkout@v6
11
- name: Install Dependencies
12
- run: npm install @commitlint/config-conventional
+ run: npm install @commitlint/config-conventional@latest @commitlint/cli@latest
13
- uses: JulienKode/pull-request-name-linter-action@v19.0.0
commitlint.config.js
@@ -1 +1,7 @@
1
-export default { extends: ['@commitlint/config-conventional'] }
+export default {
2
+ extends: ['@commitlint/config-conventional'],
3
+ rules: {
4
+ // Allow breaking changes with ! instead of requiring BREAKING CHANGE: footer
5
+ 'footer-max-line-length': [0],
6
+ },
7
+}
0 commit comments