From bc3ac51effe23ce4abf3e0e4558559f46a136e6f Mon Sep 17 00:00:00 2001 From: Pravin Kamble Date: Sat, 20 Dec 2025 10:48:47 +0530 Subject: [PATCH] Cancel in-progress runs on new pushes --- .github/workflows/test.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 18a97c572..eb440220f 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -11,6 +11,10 @@ on: # Run weekly on Saturday - cron: '37 3 * * SAT' +concurrency: + group: ${{ github.workflow }}-${{ github.ref }} + cancel-in-progress: true + permissions: contents: read