From 35e07bdbd71a1b88e18659ff7fb22ab8f18217f1 Mon Sep 17 00:00:00 2001 From: Philippe Weidmann Date: Tue, 26 Mar 2024 10:43:33 +0100 Subject: [PATCH] ci: Fix fail on merge message --- .github/workflows/semantic-commit.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/semantic-commit.yml b/.github/workflows/semantic-commit.yml index 0dab4eb6e..65da923cc 100644 --- a/.github/workflows/semantic-commit.yml +++ b/.github/workflows/semantic-commit.yml @@ -15,7 +15,7 @@ jobs: - name: Check Commit Message uses: gsactions/commit-message-checker@v2 with: - pattern: '^(feat|fix|chore|docs|style|refactor|perf|ci|test)(\(.+\))?: [A-Z0-9].+' + pattern: '^Merge .+|(^(feat|fix|chore|docs|style|refactor|perf|ci|test)(\(.+\))?: [A-Z0-9].+)' error: 'Commit messages and PR title should match conventional commit convention and start with a majuscule.' excludeDescription: 'true' excludeTitle: 'false'