From 9b22003d55c36cfa064b6647e929f1a226f0cc64 Mon Sep 17 00:00:00 2001 From: Johan Castiblanco Date: Mon, 4 Sep 2023 13:02:37 -0500 Subject: [PATCH] fix: wrong syntaxis of the if --- .github/workflows/strain_dispatcher.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/strain_dispatcher.yml b/.github/workflows/strain_dispatcher.yml index 916d890a..9cd73105 100644 --- a/.github/workflows/strain_dispatcher.yml +++ b/.github/workflows/strain_dispatcher.yml @@ -13,8 +13,8 @@ jobs: - name: Strain Repository Dispatch if: | github.event.action == 'opened' || - github.event.action == 'synchronize' - (github.event.action == 'closed' && github.event.pull_request.merged) || + github.event.action == 'synchronize' || + (github.event.action == 'closed' && github.event.pull_request.merged) uses: peter-evans/repository-dispatch@v2 with: