Skip to content

Commit e0443fc

Browse files
committed
chore(ci): update ignores for Dependabot-style commits
1 parent 530a569 commit e0443fc

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)