From 577730609c8128ccad98c8fa8b9b5f9bee307dba Mon Sep 17 00:00:00 2001 From: Sid Date: Tue, 23 Jun 2026 20:47:40 +0530 Subject: [PATCH] ci: group the runner to PR (#8343) --- .github/workflows/tests-linux.yml | 4 ++++ .github/workflows/tests-macos.yml | 4 ++++ .github/workflows/tests-windows.yml | 4 ++++ 3 files changed, 12 insertions(+) diff --git a/.github/workflows/tests-linux.yml b/.github/workflows/tests-linux.yml index 8d2d383cd..350f892f9 100644 --- a/.github/workflows/tests-linux.yml +++ b/.github/workflows/tests-linux.yml @@ -6,6 +6,10 @@ on: pull_request: branches: [main, 'release/v*'] +concurrency: + group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} + cancel-in-progress: true + jobs: unit-test: name: Unit Tests (Linux) diff --git a/.github/workflows/tests-macos.yml b/.github/workflows/tests-macos.yml index 676108baf..83ffde25f 100644 --- a/.github/workflows/tests-macos.yml +++ b/.github/workflows/tests-macos.yml @@ -6,6 +6,10 @@ on: pull_request: branches: [main, 'release/v*'] +concurrency: + group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} + cancel-in-progress: true + jobs: unit-test: name: Unit Tests (macOS) diff --git a/.github/workflows/tests-windows.yml b/.github/workflows/tests-windows.yml index bb9eee8cd..6f53d64a6 100644 --- a/.github/workflows/tests-windows.yml +++ b/.github/workflows/tests-windows.yml @@ -6,6 +6,10 @@ on: pull_request: branches: [main, 'release/v*'] +concurrency: + group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} + cancel-in-progress: true + jobs: unit-test: name: Unit Tests (Windows)