From 6098a2b5ec5a0ffc7e8a49105b8fb30cf95d5644 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Valentin=20Breu=C3=9F?= Date: Sun, 17 Mar 2024 15:00:46 +0100 Subject: [PATCH] fix!: support exclamation mark in conventional commits (#1105) Support exclamation mark in conventional commits --- .github/workflows/ci.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index e7a83195a..c63291262 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -89,7 +89,9 @@ jobs: github.event_name == 'push' && ( startsWith(github.event.head_commit.message, 'feat:') || + startsWith(github.event.head_commit.message, 'feat!:') || startsWith(github.event.head_commit.message, 'fix:') || + startsWith(github.event.head_commit.message, 'fix!:') || contains(github.event.head_commit.message, 'breaking change') ) needs: [pack]