From 7b41059afe82792173201a90507214a93b3cf7be Mon Sep 17 00:00:00 2001 From: ttozzi Date: Sat, 5 Apr 2025 10:52:48 +0900 Subject: [PATCH] Add concurrency control to cancel in-progress PR workflows --- .github/workflows/pull_request.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/pull_request.yml b/.github/workflows/pull_request.yml index 01cce58414d..62d15071b42 100644 --- a/.github/workflows/pull_request.yml +++ b/.github/workflows/pull_request.yml @@ -4,6 +4,10 @@ on: pull_request: types: [opened, reopened, synchronize] +concurrency: + group: ${{ github.workflow }}-${{ github.ref }} + cancel-in-progress: true + jobs: tests: name: Test