Skip to content

Commit

Permalink
chore: change condition to trigger CI (#158)
Browse files Browse the repository at this point in the history
  • Loading branch information
qui-pham authored Jan 4, 2024
2 parents 85a05fc + 3f36137 commit 353a809
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 353a809

Please sign in to comment.