From e9c5e53ddf82c7cc3b4e9eff695d1d62eec5f72a Mon Sep 17 00:00:00 2001 From: Jacob Alber Date: Tue, 2 Jan 2024 14:42:23 -0500 Subject: [PATCH] ci: Disable Windows-only CMake Workflow The unified vcpkg_build workflow includes Windows, and builds the same. Disable this from triggering automatically in prep for removing outright --- .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 ece9dea602f..e477d45f18e 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 }}