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 13
13
# This should be later than the update time of `apache/apisix:dev`
14
14
# Ref: https://github.com/apache/apisix-docker/blob/master/.github/workflows/apisix_dev_push_docker_hub.yaml#L7C15-L7C16
15
15
- cron : ' 0 2 * * *'
16
+ workflow_dispatch :
16
17
17
18
concurrency :
18
19
group : ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
19
20
cancel-in-progress : true
20
21
21
22
jobs :
22
23
test :
23
- # only run when e2e-test label is added or scheduled
24
- if : ${{ (github.event_name == 'pull_request' && contains(github.event.pull_request.labels.*.name, 'e2e-test')) || github.event_name == 'schedule' }}
24
+ # only run when e2e-test label is added, scheduled, workflow_dispatch
25
+ if : ${{ (github.event_name == 'pull_request' && contains(github.event.pull_request.labels.*.name, 'e2e-test')) || github.event_name == 'schedule' || github.event_name == 'workflow_dispatch' }}
25
26
timeout-minutes : 40
26
27
runs-on : ubuntu-latest
27
28
steps :
You can’t perform that action at this time.
0 commit comments