From e0443fcf1e4feb6e9c7b0bd0233410580589625a Mon Sep 17 00:00:00 2001 From: Nano Taboada <87288+nanotaboada@users.noreply.github.com> Date: Thu, 1 May 2025 09:27:19 -0300 Subject: [PATCH] chore(ci): update ignores for Dependabot-style commits --- commitlint.config.mjs | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/commitlint.config.mjs b/commitlint.config.mjs index 31fc263..197735d 100644 --- a/commitlint.config.mjs +++ b/commitlint.config.mjs @@ -7,9 +7,8 @@ export default { "body-max-line-length": [2, "always", 80], }, ignores: [ - // skip any commit whose body contains the Dependabot signature - (message) => message.includes("Signed‑off‑by: dependabot[bot]"), - // skip any Dependabot‑style bump header + // bypass Dependabot-style commits (message) => /^chore\(deps(-dev)?\): bump /.test(message), + (message) => /Signed-off-by: dependabot\[bot\]/.test(message), ], };