Skip to content

Commit

Permalink
chore: fix condition
Browse files Browse the repository at this point in the history
  • Loading branch information
qui-pham committed Jan 4, 2024
1 parent b8d0af8 commit 5578e4b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/merge-release-to-network.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ permissions:
jobs:
merge-release-to-network:
runs-on: ubuntu-latest
if: (github.event.pull_request.merged == true) && (${{ contains(github.head_ref, 'deploy') }})
if: ${{ github.event.pull_request.merged == true && (contains(github.head_ref, 'deploy') || contains(github.ref_name, 'deploy')) }}
steps:
- name: Set Env
run: |
Expand Down

0 comments on commit 5578e4b

Please sign in to comment.