Skip to content

Commit b8b81ab

Browse files
authored
WX-1550 Don't pointlessly continue running integration tests (#7400)
1 parent 7a03cda commit b8b81ab

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

.github/workflows/integration_tests.yml

+6
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,12 @@ on:
1616
permissions:
1717
contents: read
1818

19+
concurrency:
20+
# Don't run this workflow concurrently on the same branch
21+
group: ${{ github.workflow }}-${{ github.ref }}
22+
# For PRs, don't wait for completion of existing runs, cancel them instead
23+
cancel-in-progress: ${{ github.ref != 'develop' }}
24+
1925
jobs:
2026
integration-tests:
2127
strategy:

0 commit comments

Comments
 (0)