From a657dd2fa3136c5dfe31ef52510686f32c4b4263 Mon Sep 17 00:00:00 2001 From: David Lane <42013603+ReenigneArcher@users.noreply.github.com> Date: Fri, 22 May 2026 21:41:33 -0400 Subject: [PATCH] ci: Update workflow for concurrency and branch settings Removed pull_request branch specification and added concurrency settings. --- .github/workflows/ci-validation.yml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci-validation.yml b/.github/workflows/ci-validation.yml index 0d4e7c3..6290b95 100644 --- a/.github/workflows/ci-validation.yml +++ b/.github/workflows/ci-validation.yml @@ -1,8 +1,8 @@ +--- name: Build Virtual Display Driver on: pull_request: - branches: [ main, master ] push: branches: [ main, master ] paths-ignore: @@ -11,6 +11,10 @@ on: - 'LICENSE*' workflow_dispatch: +concurrency: + group: "${{ github.workflow }}-${{ github.ref }}" + cancel-in-progress: true + env: BUILD_CONFIGURATION: Release VDD_SOLUTION: Virtual Display Driver (HDR)/MttVDD.sln @@ -141,4 +145,3 @@ jobs: name: VDD-${{ matrix.platform }}-${{ env.BUILD_CONFIGURATION }} path: artifacts/VDD/${{ matrix.platform }}/ if-no-files-found: error -