From 0f6fd91ffb77a797c50c001092fde2a39d88c0f5 Mon Sep 17 00:00:00 2001 From: Dan Harrin Date: Fri, 22 May 2026 17:09:27 +0100 Subject: [PATCH] Fix YAML parsing of if condition in format-and-build workflow --- .github/workflows/format-and-build.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/format-and-build.yml b/.github/workflows/format-and-build.yml index 93c439637a..86558d13f1 100644 --- a/.github/workflows/format-and-build.yml +++ b/.github/workflows/format-and-build.yml @@ -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