From a0be017772e5ccce9f6e2c6335104eb61b156479 Mon Sep 17 00:00:00 2001 From: Jacob Alber Date: Thu, 21 Mar 2024 11:41:34 -0400 Subject: [PATCH] ci: Disable Windows-only CMake Workflow (#4678) The unified vcpkg_build workflow includes Windows, and builds the same. Disable this from triggering automatically in prep for removing outright Co-authored-by: olgavrou --- .github/workflows/build_windows_cmake.yml | 16 +++++++++------- 1 file changed, 9 insertions(+), 7 deletions(-) diff --git a/.github/workflows/build_windows_cmake.yml b/.github/workflows/build_windows_cmake.yml index af4aacc4a98..5ae2de5b1c8 100644 --- a/.github/workflows/build_windows_cmake.yml +++ b/.github/workflows/build_windows_cmake.yml @@ -1,13 +1,15 @@ name: Windows / C++ - CMake only on: - push: - branches: - - master - - 'releases/**' - pull_request: - branches: - - '*' + # only run on explicit user request, since this build is duplicated by the vcpkg builds + workflow_dispatch + # push: + # branches: + # - master + # - 'releases/**' + # pull_request: + # branches: + # - '*' concurrency: group: ${{ github.workflow }}-${{ github.head_ref || github.sha }}