From f69643058133e29590b0462a1963845e670e32f6 Mon Sep 17 00:00:00 2001 From: Larry Gritz Date: Wed, 1 Apr 2026 20:19:49 -0700 Subject: [PATCH] fix(ci): Turn off nightly CI for forks (for windows) We tried to do this in 2074, but didn't disable Windows. Signed-off-by: Larry Gritz --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 58b7685f6..94c0194fc 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -567,7 +567,7 @@ jobs: windows: - if: ${{ ! contains(github.ref, 'linux-only') && ! contains(github.ref, 'macos-only') && ! contains(github.ref, 'optix-only') }} + if: ${{ (github.event.repository.fork == false || github.event_name != 'schedule') && ! contains(github.ref, 'linux-only') && ! contains(github.ref, 'macos-only') && ! contains(github.ref, 'optix-only') }} name: "${{matrix.desc}}" uses: ./.github/workflows/build-steps.yml with: