From 6ad4b6a4af6fcee574a0a128228a134aeeed5e17 Mon Sep 17 00:00:00 2001 From: crazywhalecc Date: Sat, 9 May 2026 16:07:22 +0800 Subject: [PATCH] Add concurrency settings to GitHub Actions workflow --- .github/workflows/tests.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 78a8a897..3efa06df 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -15,6 +15,10 @@ on: permissions: read-all +concurrency: + group: ${{ github.workflow }}-${{ github.event.pull_request.number }} + cancel-in-progress: true + env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}