From ffa76c09d5c80fec5e364da9b55678c05697c703 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Oliver=20B=C3=A4hler?= Date: Thu, 15 Feb 2024 16:57:19 +0100 Subject: [PATCH] fix(ci): allow upper-case for dependabot commits MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Oliver Bähler --- commitlint.config.js | 1 + 1 file changed, 1 insertion(+) diff --git a/commitlint.config.js b/commitlint.config.js index c43c3ce9..b1331587 100644 --- a/commitlint.config.js +++ b/commitlint.config.js @@ -4,6 +4,7 @@ const Configuration = { rules: { 'type-enum': [2, 'always', ['chore', 'ci', 'docs', 'feat', 'test', 'fix', 'sec']], 'body-max-line-length': [1, 'always', 500], + 'subject-case': [2, 'always', ['lower-case', 'sentence-case', 'upper-case']], }, /* * Whether commitlint uses the default ignore rules, see the description above.