From af284f8084c442a552ab9c02607a93caec9ae04d Mon Sep 17 00:00:00 2001 From: Jan Holthuis Date: Mon, 14 Oct 2024 19:31:55 +0200 Subject: [PATCH] ci(actions): Fix broken `if` expression --- .github/workflows/sync_branches.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/sync_branches.yml b/.github/workflows/sync_branches.yml index c9392e6..71b0482 100644 --- a/.github/workflows/sync_branches.yml +++ b/.github/workflows/sync_branches.yml @@ -16,7 +16,7 @@ jobs: - from_branch: "2.5" to_branch: "main" runs-on: ubuntu-latest - if: ${{ github.event_name == "workflow_dispatch" || github.ref_name == matrix.to_branch }} + if: github.event_name == 'workflow_dispatch' || github.ref_name == matrix.to_branch steps: - name: Merge ${{ matrix.from_branch }} into ${{ matrix.to_branch }} uses: tretuna/sync-branches@1.4.0