From 8f5d7ca00b41860660da149ebb807d1e99ed1d1d Mon Sep 17 00:00:00 2001 From: Aleksander Zaruczewski Date: Sun, 21 Jan 2024 14:33:00 +0200 Subject: [PATCH] ci(commitlint): ignore dependabot's commit messages --- commitlint.config.js | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 commitlint.config.js diff --git a/commitlint.config.js b/commitlint.config.js new file mode 100644 index 0000000..2ef25a1 --- /dev/null +++ b/commitlint.config.js @@ -0,0 +1,4 @@ +module.exports = { + extends: ["@commitlint/config-conventional"], + ignores: [(msg) => /Signed-off-by: dependabot\[bot]/m.test(msg)], +};