mirror of
https://github.com/super-linter/super-linter.git
synced 2024-11-09 02:23:39 -05:00
ci: don't validate dependabot commits (#5026)
Dependabot doesn't allow configuring the max commit message line length until https://github.com/dependabot/dependabot-core/issues/2445 is resolved, so we cannot validate Dependabot commits at this time.
This commit is contained in:
parent
9db632f0e1
commit
117318f55c
1 changed files with 4 additions and 1 deletions
5
.github/linters/commitlint.config.js
vendored
5
.github/linters/commitlint.config.js
vendored
|
@ -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)]
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue