From f801fea3bbfd7830233da5e2df8d2bf16acd65d1 Mon Sep 17 00:00:00 2001 From: Mozafar Date: Wed, 8 Apr 2026 07:31:23 +0100 Subject: [PATCH] fix: ignore '[skip ci]' commits This is necessary, for example, when merging from beta or alpha branches where the release commits break the rules and have [skip ci] (we already do the same with [skip release]) --- config/commitlint.config.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/commitlint.config.js b/config/commitlint.config.js index d535489e..fdb3ce23 100644 --- a/config/commitlint.config.js +++ b/config/commitlint.config.js @@ -9,5 +9,5 @@ module.exports = { * commits often exceed the max. amount of characters because * of the appended changelog. This ignores those commits. */ - ignores: [(commit) => commit.includes('[skip release]')], + ignores: [(commit) => commit.includes('[skip release]') || commit.includes('[skip ci]') ], }