From 9a91ba19551a62b1d449ec82f086aaf32902b63a Mon Sep 17 00:00:00 2001 From: Nikolaj Bjorner Date: Mon, 15 Sep 2025 10:36:42 -0700 Subject: [PATCH] Change MSVC Clang-CL build trigger to scheduled Updated workflow to trigger on a schedule instead of push and pull_request events. --- .github/workflows/msvc-static-build-clang-cl.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/msvc-static-build-clang-cl.yml b/.github/workflows/msvc-static-build-clang-cl.yml index 3b5caf465..f8cd8962b 100644 --- a/.github/workflows/msvc-static-build-clang-cl.yml +++ b/.github/workflows/msvc-static-build-clang-cl.yml @@ -1,8 +1,8 @@ name: MSVC Clang-CL Static Build on: - push: - pull_request: + schedule: + - cron: '0 0 */2 * *' permissions: contents: read # to fetch code (actions/checkout)