File tree Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change 2020
2121jobs :
2222 openstack :
23- if : github.event_name == 'pull_request' && github.event.action != 'closed'
23+ if : github.event_name != 'pull_request' || (github.event_name == 'pull_request' && github.event.action != 'closed')
2424 runs-on : ubuntu-latest
2525
2626 strategy :
6868 annotations : ${{ steps.meta.outputs.annotations }}
6969
7070 dnsmasq :
71- if : github.event_name == 'pull_request' && github.event.action != 'closed'
71+ if : github.event_name != 'pull_request' || (github.event_name == 'pull_request' && github.event.action != 'closed')
7272 runs-on : ubuntu-latest
7373
7474 steps :
@@ -109,6 +109,7 @@ jobs:
109109 labels : ${{ steps.meta.outputs.labels }}
110110
111111 workflows :
112+ if : github.event_name != 'pull_request' || (github.event_name == 'pull_request' && github.event.action != 'closed')
112113 runs-on : ubuntu-latest
113114
114115 strategy :
You can’t perform that action at this time.
0 commit comments