From 0ab50cb665ccc51a628b28970afda11eb9ddf903 Mon Sep 17 00:00:00 2001 From: Rima Sirich Date: Mon, 28 Aug 2023 21:29:11 +0300 Subject: [PATCH] fix: commitlint.config.js (#276) --- commitlint.config.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/commitlint.config.js b/commitlint.config.js index 8fe89135..5cc7ff40 100644 --- a/commitlint.config.js +++ b/commitlint.config.js @@ -1,5 +1,5 @@ // override commitlint ignores as suggested by https://github.com/dependabot/dependabot-core/issues/2445#issuecomment-949633412 module.exports = { extends: ["@commitlint/config-conventional"], - ignores: [(message) => /^bump \[.+]\(.+\) from .+ to .+\.$/m.test(message)], + ignores: [(message) => /^Bumps \[.+]\(.+\) from .+ to .+\.$/m.test(message)], };