File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change 44 workflow_call :
55
66concurrency :
7- group : cloud-tests-${{ (github.ref == 'refs/heads/main' && github.event_name == 'schedule' && 'nightly') || (github.ref == 'refs/heads/main' && github.event_name == 'push' && 'merge') || github.actor || github.triggering_actor }}
7+ group : cloud-tests-${{ (github.ref == 'refs/heads/main' && ( github.event_name == 'schedule' || github.event_name == 'workflow_dispatch') && 'nightly') || (github.ref == 'refs/heads/main' && github.event_name == 'push' && 'merge') || github.actor || github.triggering_actor }}
88 cancel-in-progress : true
99
1010jobs :
Original file line number Diff line number Diff line change 7878 EVENT_NAME : ${{ github.event_name }}
7979 run : |
8080 # Nightly runs all tests, overriding PR labels as '["test/e2e2/*"]'
81- if [ "${GITHUB_REF}" == "refs/heads/main" ] && [ "${EVENT_NAME}" == "schedule" ];then
81+ if [ "${GITHUB_REF}" == "refs/heads/main" ] && [ "${EVENT_NAME}" == "schedule" -o "${EVENT_NAME}" == "workflow_dispatch" ];then
8282 PR_LABELS='["test/e2e2/*"]'
8383 echo "Nightly runs all tests"
8484 fi
You can’t perform that action at this time.
0 commit comments