File tree Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Expand file tree Collapse file tree 1 file changed +4
-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
+ repository_dispatch :
17
+ types : [e2e-test]
16
18
workflow_dispatch :
17
19
18
20
concurrency :
@@ -21,8 +23,8 @@ concurrency:
21
23
22
24
jobs :
23
25
test :
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' }}
26
+ # only run when e2e-test label is added, scheduled, workflow_dispatch, repository_dispatch
27
+ if : ${{ (github.event_name == 'pull_request' && contains(github.event.pull_request.labels.*.name, 'e2e-test')) || github.event_name == 'schedule' || github.event_name == 'workflow_dispatch' || github.event_name == 'repository_dispatch' }}
26
28
timeout-minutes : 40
27
29
runs-on : ubuntu-latest
28
30
steps :
You can’t perform that action at this time.
0 commit comments