Skip to content

Commit

Permalink
fix: wrong syntaxis of the if
Browse files Browse the repository at this point in the history
  • Loading branch information
johanseto committed Sep 4, 2023
1 parent eb06106 commit 9b22003
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/strain_dispatcher.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down

0 comments on commit 9b22003

Please sign in to comment.