Skip to content

Commit d272adf

Browse files
kauandotnetclaude
andauthored
fix(ci): release trigger regex not matching conventional commit bang notation (#61)
Co-authored-by: Claude Opus 4.5 <noreply@anthropic.com>
1 parent ba47e03 commit d272adf

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ jobs:
6565
releasable_commits=$(echo "$commits" | grep -v "chore: bump version\|\\[skip ci\\]\|^docs:\|^style:\|^test:" || true)
6666
6767
# Only release if there are significant changes (fixes, features, refactors, etc.)
68-
significant_commits=$(echo "$releasable_commits" | grep -E "^(feat|fix|refactor|perf|chore):" || true)
68+
significant_commits=$(echo "$releasable_commits" | grep -E "^(feat|fix|refactor|perf|chore)(\([^)]+\))?!?:" || true)
6969
7070
if [ -n "$significant_commits" ]; then
7171
echo "should-release=true" >> $GITHUB_OUTPUT

0 commit comments

Comments
 (0)