Skip to content

Commit

Permalink
ci: don't validate dependabot commits
Browse files Browse the repository at this point in the history
Dependabot doesn't allow configuring the max commit message line length
until dependabot/dependabot-core#2445 is
resolved, so we cannot validate Dependabot commits at this time.
  • Loading branch information
ferrarimarco committed Dec 20, 2023
1 parent 9db632f commit ccbf1da
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/linters/commitlint.config.js
@@ -1,4 +1,7 @@
module.exports = {
extends: ['@commitlint/config-conventional'],
helpUrl: 'https://www.conventionalcommits.org/'
helpUrl: 'https://www.conventionalcommits.org/',
// We need this until https://github.com/dependabot/dependabot-core/issues/2445
// is resolved.
ignores: [(msg) => /Signed-off-by: dependabot\[bot]/m.test(msg)],
}

0 comments on commit ccbf1da

Please sign in to comment.