Fix YAML parsing of if condition in format-and-build workflow

This commit is contained in:
Dan Harrin
2026-05-22 17:09:27 +01:00
parent 42d1c99eec
commit 0f6fd91ffb
+1 -1
View File
@@ -14,7 +14,7 @@ concurrency:
jobs:
format-and-build:
if: ${{ !startsWith(github.event.head_commit.message, 'chore: format and build') }}
if: "${{ !startsWith(github.event.head_commit.message, 'chore: format and build') }}"
runs-on: ubuntu-latest
steps:
- name: Checkout code