From 117318f55c86fe9d1f478c9d484f864af1e7ef0c Mon Sep 17 00:00:00 2001 From: Marco Ferrari Date: Wed, 20 Dec 2023 09:12:02 +0100 Subject: [PATCH] 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. --- .github/linters/commitlint.config.js | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/linters/commitlint.config.js b/.github/linters/commitlint.config.js index 7a8f4420..c84589e4 100644 --- a/.github/linters/commitlint.config.js +++ b/.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)] }