From 8736ac32a98859fff177942a6adbda80c766b57b Mon Sep 17 00:00:00 2001 From: nitinp19 Date: Fri, 12 Dec 2025 10:41:50 +0530 Subject: [PATCH] Add concurrency settings Add concurrency settings to ensure only the latest commit runs for each PR. --- .github/workflows/scriptTests.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/scriptTests.yml b/.github/workflows/scriptTests.yml index b86379809..4b75491d8 100644 --- a/.github/workflows/scriptTests.yml +++ b/.github/workflows/scriptTests.yml @@ -9,6 +9,7 @@ on: types: [labeled] branches: - "master" + # Ensures that only the latest commit is running for each PR at a time. concurrency: group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.sha }}-${{ github.ref }}