From e752574172fc433bd1b6e96fd3952a7b5fac0f75 Mon Sep 17 00:00:00 2001 From: zinduolis Date: Wed, 11 Mar 2026 19:12:18 +1000 Subject: [PATCH] Add concurrency group at the job level to ensure only one BrowserStack test runs per PR at a time, eliminating the double-run scenario --- .github/workflows/github_actions.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/github_actions.yml b/.github/workflows/github_actions.yml index ccb2dbb74..d917e8ee1 100644 --- a/.github/workflows/github_actions.yml +++ b/.github/workflows/github_actions.yml @@ -9,6 +9,9 @@ jobs: ubuntu-job: name: 'BrowserStack Test on Ubuntu' runs-on: ubuntu-latest + concurrency: + group: browserstack-${{ github.event.pull_request.number }} + cancel-in-progress: true if: | github.event.label.name == 'safe_to_test' || github.event.pull_request.user.login == 'dependabot[bot]'