From 366bde36faff259818ded16751dedcaf3dd434b3 Mon Sep 17 00:00:00 2001 From: WiderDeveloper Date: Fri, 24 Jul 2026 00:57:14 +0300 Subject: [PATCH] ci: cancel superseded runs on new pushes Adds concurrency cancel-in-progress, matching the pattern already used in AQWUM-Core/Website/APP, QUD, and Wider-Community-Platform. Without it, force-pushes and rapid commits to the same branch let stale runs finish instead of getting cancelled, wasting CI minutes. --- .github/workflows/ci.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index d5ffc5e..0220b9e 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -6,6 +6,10 @@ on: pull_request: branches: [main] +concurrency: + group: ${{ github.workflow }}-${{ github.ref }} + cancel-in-progress: true + jobs: typecheck: name: TypeScript typecheck (src/)