diff --git a/.github/workflows/build-linux-debug.yml b/.github/workflows/build-linux-debug.yml index 5cdc52f247..ed6d601c07 100644 --- a/.github/workflows/build-linux-debug.yml +++ b/.github/workflows/build-linux-debug.yml @@ -8,6 +8,8 @@ on: tags: - '*' pull_request: + schedule: + - cron: '0 0 * * 0' env: # Customize the CMake build type here (Release, Debug, RelWithDebInfo, etc.) diff --git a/.github/workflows/build-linux.yml b/.github/workflows/build-linux.yml index 994ee9482b..962a89336a 100644 --- a/.github/workflows/build-linux.yml +++ b/.github/workflows/build-linux.yml @@ -8,6 +8,8 @@ on: tags: - '*' pull_request: + schedule: + - cron: '0 0 * * 0' env: # Customize the CMake build type here (Release, Debug, RelWithDebInfo, etc.) diff --git a/.github/workflows/build-mac-arm64.yml b/.github/workflows/build-mac-arm64.yml index f67fab5c27..0e0f4277ee 100644 --- a/.github/workflows/build-mac-arm64.yml +++ b/.github/workflows/build-mac-arm64.yml @@ -8,6 +8,8 @@ on: tags: - '*' pull_request: + schedule: + - cron: '0 0 * * 0' env: # Customize the CMake build type here (Release, Debug, RelWithDebInfo, etc.) diff --git a/.github/workflows/build-mac.yml b/.github/workflows/build-mac.yml index 3b1f83f873..2f4ef4372b 100644 --- a/.github/workflows/build-mac.yml +++ b/.github/workflows/build-mac.yml @@ -8,6 +8,8 @@ on: tags: - '*' pull_request: + schedule: + - cron: '0 0 * * 0' env: # Customize the CMake build type here (Release, Debug, RelWithDebInfo, etc.) diff --git a/.github/workflows/build-windows.yml b/.github/workflows/build-windows.yml index 79c0de97f3..f0c927383b 100644 --- a/.github/workflows/build-windows.yml +++ b/.github/workflows/build-windows.yml @@ -8,7 +8,9 @@ on: tags: - '*' pull_request: - + schedule: + - cron: '0 0 * * 0' + env: # Customize the CMake build type here (Release, Debug, RelWithDebInfo, etc.) BUILD_TYPE: Release