File tree Expand file tree Collapse file tree 1 file changed +3
-1
lines changed Expand file tree Collapse file tree 1 file changed +3
-1
lines changed Original file line number Diff line number Diff line change 18
18
19
19
jobs :
20
20
deploy-dev-pr-environment :
21
- if : contains(github.event.pull_request.labels.*.name, 'deploy-pr')
21
+ if : contains(github.event.pull_request.labels.*.name, 'deploy-pr') || github.event_name == 'workflow_dispatch'
22
22
runs-on : ubuntu-latest
23
23
outputs :
24
24
env_name : ${{ steps.env-name.outputs.PR_ENV_NAME }}
60
60
(github.event_name == 'pull_request' && github.event.action == 'unlabeled' && github.event.label.name == 'deploy-pr')
61
61
||
62
62
(github.event_name == 'pull_request' && github.event.action == 'closed' && contains(github.event.pull_request.labels.*.name, 'deploy-pr'))
63
+ ||
64
+ github.event_name == 'workflow_dispatch'
63
65
runs-on : ubuntu-latest
64
66
steps :
65
67
- name : Trigger workflow in another repo
You can’t perform that action at this time.
0 commit comments