diff --git a/.github/workflows/build-docker-image.yml b/.github/workflows/build-docker-image.yml index 66b14467b7..d03be035ae 100644 --- a/.github/workflows/build-docker-image.yml +++ b/.github/workflows/build-docker-image.yml @@ -17,7 +17,8 @@ jobs: github.event.pull_request.head.repo.full_name == github.repository || github.event_name == 'push' || github.event_name == 'workflow_dispatch' || - github.event_name == 'repository_dispatch' + github.event_name == 'repository_dispatch' || + github.event_name == 'schedule' defaults: run: shell: bash diff --git a/.github/workflows/ci-test-custom-script.yml b/.github/workflows/ci-test-custom-script.yml index 7149de364b..5474418df1 100644 --- a/.github/workflows/ci-test-custom-script.yml +++ b/.github/workflows/ci-test-custom-script.yml @@ -21,7 +21,8 @@ jobs: github.event.pull_request.head.repo.full_name == github.repository || github.event_name == 'push' || github.event_name == 'workflow_dispatch' || - github.event_name == 'repository_dispatch' + github.event_name == 'repository_dispatch' || + github.event_name == 'schedule' defaults: run: shell: bash diff --git a/.github/workflows/client-build.yml b/.github/workflows/client-build.yml index 519ba9facb..e64c4783b2 100644 --- a/.github/workflows/client-build.yml +++ b/.github/workflows/client-build.yml @@ -40,7 +40,8 @@ jobs: github.event.pull_request.head.repo.full_name == github.repository || github.event_name == 'push' || github.event_name == 'workflow_dispatch' || - github.event_name == 'repository_dispatch' + github.event_name == 'repository_dispatch' || + github.event_name == 'schedule' defaults: run: working-directory: app/client diff --git a/.github/workflows/rts-build.yml b/.github/workflows/rts-build.yml index 3342370a54..10d5b28da0 100644 --- a/.github/workflows/rts-build.yml +++ b/.github/workflows/rts-build.yml @@ -38,7 +38,8 @@ jobs: github.event.pull_request.head.repo.full_name == github.repository || github.event_name == 'push' || github.event_name == 'workflow_dispatch' || - github.event_name == 'repository_dispatch' + github.event_name == 'repository_dispatch' || + github.event_name == 'schedule' steps: # The checkout steps MUST happen first because the default directory is set according to the code base.