From e58656197d3ad37854fd424495631bba59ac7ce9 Mon Sep 17 00:00:00 2001 From: Daniel Grimm Date: Thu, 18 Dec 2025 16:26:09 +0100 Subject: [PATCH] fix: allow automator commits without message This makes sure that our Automator commits pass the commit check. Signed-off-by: Daniel Grimm --- .commit-check.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.commit-check.yml b/.commit-check.yml index 2fb08c0b2..2290d9922 100644 --- a/.commit-check.yml +++ b/.commit-check.yml @@ -1,7 +1,7 @@ # More config examples could be found here - https://github.com/commit-check/commit-check/blob/main/.commit-check.yml checks: - check: message - regex: '^([^\n]+)\n\n(?!(Signed-off-by:))([\s\S]+)$' + regex: '^Automator(.|\n)*$|^([^\n]+)\n\n(?!(Signed-off-by:))([\s\S]+)$' error: "The commit message should be structured as follows:\n \n\n "