Skip to content

Commit 5578e4b

Browse files
committed
chore: fix condition
1 parent b8d0af8 commit 5578e4b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/merge-release-to-network.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ permissions:
1717
jobs:
1818
merge-release-to-network:
1919
runs-on: ubuntu-latest
20-
if: (github.event.pull_request.merged == true) && (${{ contains(github.head_ref, 'deploy') }})
20+
if: ${{ github.event.pull_request.merged == true && (contains(github.head_ref, 'deploy') || contains(github.ref_name, 'deploy')) }}
2121
steps:
2222
- name: Set Env
2323
run: |

0 commit comments

Comments
 (0)