fix(ci): quote release workflow if: so the YAML parses #4

Merged
whitlocktech merged 1 commits from fix/release-workflow-yaml into main 2026-07-14 16:51:51 +00:00
Showing only changes of commit ddf14bdab0 - Show all commits

View File

@@ -56,7 +56,9 @@ jobs:
release:
runs-on: ubuntu-latest
# Don't loop on our own bump commit (belt-and-suspenders with [skip ci]).
if: ${{ !contains(github.event.head_commit.message, 'chore(release): bump version') }}
# Quoted because the expression contains a colon (`chore(release):`), which an
# unquoted YAML scalar would misparse as a mapping value.
if: "${{ !contains(github.event.head_commit.message, 'chore(release): bump version') }}"
steps:
- name: Check out full history (need tags + commit log for the bump)
uses: actions/checkout@v4