From 630052b04392394141a089d607ea9382f424e3b6 Mon Sep 17 00:00:00 2001 From: ttozzi Date: Fri, 4 Apr 2025 03:36:06 +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 ab7f274bf..b09ca0d56 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