Skip to content

Commit 39ab70d

Browse files
authored
Merge pull request #228 from nanotaboada/feature/commitlint-config-conventional-ignores
chore(ci): update ignores for Dependabot-style commits
2 parents 530a569 + e0443fc commit 39ab70d

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

commitlint.config.mjs

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,8 @@ export default {
77
"body-max-line-length": [2, "always", 80],
88
},
99
ignores: [
10-
// skip any commit whose body contains the Dependabot signature
11-
(message) => message.includes("Signed‑off‑by: dependabot[bot]"),
12-
// skip any Dependabot‑style bump header
10+
// bypass Dependabot-style commits
1311
(message) => /^chore\(deps(-dev)?\): bump /.test(message),
12+
(message) => /Signed-off-by: dependabot\[bot\]/.test(message),
1413
],
1514
};

0 commit comments

Comments
 (0)