From 52d03f43efabb47a707a5f644a4c8a180ba71007 Mon Sep 17 00:00:00 2001 From: "mr. m" <91018726+mr-cheffy@users.noreply.github.com> Date: Sat, 21 Feb 2026 21:30:15 +0100 Subject: [PATCH] feat: Add concurrency checks for lint and PR workflows, p=#12457, c=workflows --- .github/workflows/code-linter.yml | 4 ++++ .github/workflows/pr-test.yml | 4 ++++ 2 files changed, 8 insertions(+) diff --git a/.github/workflows/code-linter.yml b/.github/workflows/code-linter.yml index cf9c8809c..3bb902c32 100644 --- a/.github/workflows/code-linter.yml +++ b/.github/workflows/code-linter.yml @@ -9,6 +9,10 @@ on: permissions: contents: read +concurrency: + group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} + cancel-in-progress: true + jobs: lint: runs-on: ubuntu-latest diff --git a/.github/workflows/pr-test.yml b/.github/workflows/pr-test.yml index 916c435e5..e05721c01 100644 --- a/.github/workflows/pr-test.yml +++ b/.github/workflows/pr-test.yml @@ -7,6 +7,10 @@ on: branches: - dev +concurrency: + group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} + cancel-in-progress: true + jobs: pr-test: runs-on: ubuntu-latest