diff --git a/.github/workflows/pr_title.yml b/.github/workflows/pr_title.yml index a4351db..db3cf3d 100644 --- a/.github/workflows/pr_title.yml +++ b/.github/workflows/pr_title.yml @@ -15,7 +15,15 @@ jobs: - run: > echo 'module.exports = { // Workaround for https://github.com/dependabot/dependabot-core/issues/5923 - "ignores": [(message) => /^Bumps \[.+]\(.+\) from .+ to .+\.$/m.test(message)] + "ignores": [ + (message) => /^Bumps \[.+]\(.+\) from .+ to .+\.$/m.test(message), + (message) => /^Updates the requirements on .+ to permit the latest version\.$/m.test(message) + ], + "rules": { + "body-max-line-length": [0, "always", Infinity], + "footer-max-line-length": [0, "always", Infinity], + "body-leading-blank": [0, "always"] + } }' > .commitlintrc.js - run: npx commitlint --extends @commitlint/config-conventional --verbose <<< $COMMIT_MSG env: