From 5cf09767d04e0583ff3b5385c021b79409671964 Mon Sep 17 00:00:00 2001 From: Alan Morris Date: Fri, 8 May 2026 08:43:40 -0600 Subject: [PATCH] Schedule weekly github actions runs to find with CI runners sooner --- .github/workflows/build-linux-debug.yml | 2 ++ .github/workflows/build-linux.yml | 2 ++ .github/workflows/build-mac-arm64.yml | 2 ++ .github/workflows/build-mac.yml | 2 ++ .github/workflows/build-windows.yml | 4 +++- 5 files changed, 11 insertions(+), 1 deletion(-) 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