From f5c5eda30a65ba7fc4443a1a927f818e339c34f4 Mon Sep 17 00:00:00 2001 From: SaelixCode Date: Sun, 22 Mar 2026 22:04:49 -0400 Subject: [PATCH] fix(ci): use double-quoted string for if condition to fix YAML parse error --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 44341109..7502b178 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -164,7 +164,7 @@ jobs: update-screenshots: runs-on: ubuntu-latest # Only on develop pushes; skip bot commits to avoid an infinite loop - if: ${{ github.event_name == 'push' && github.ref == 'refs/heads/develop' && !contains(github.event.head_commit.message, 'docs: refresh screenshots') }} + if: "github.event_name == 'push' && github.ref == 'refs/heads/develop' && !contains(github.event.head_commit.message, 'docs: refresh screenshots')" needs: [ backend, frontend ] permissions: contents: write