There was an error while loading. Please reload this page.
1 parent 3118e45 commit a2cf6f7Copy full SHA for a2cf6f7
1 file changed
.github/workflows/release.yml
@@ -14,8 +14,10 @@ on:
14
15
jobs:
16
release:
17
- # Skip CI-only commits (version bumps) to avoid release loops
18
- if: "!contains(github.event.head_commit.message, '[skip ci]')"
+ # Skip CI-only commits (version bumps) to avoid release loops.
+ # Check only the first line (title) — squash merges include [skip ci]
19
+ # from intermediate commits in the body, which would falsely skip the release.
20
+ if: "!startsWith(github.event.head_commit.message, 'chore: bump version')"
21
runs-on: ubuntu-latest
22
23
permissions:
0 commit comments