Skip to content

Commit 16feaea

Browse files
authored
Merge pull request #562 from FalkorDB/copilot/add-concurrency-groups-ci-workflows
Add workflow-level concurrency to Build and Playwright CI
2 parents f063417 + d3cf8f9 commit 16feaea

2 files changed

Lines changed: 9 additions & 0 deletions

File tree

.github/workflows/nextjs.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,10 @@ on:
66
pull_request:
77
workflow_dispatch:
88

9+
concurrency:
10+
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
11+
cancel-in-progress: true
12+
913
jobs:
1014
build:
1115
runs-on: ubuntu-latest

.github/workflows/playwright.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,11 @@ on:
44
branches: [ main, staging ]
55
pull_request:
66
branches: [ main, staging ]
7+
8+
concurrency:
9+
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
10+
cancel-in-progress: true
11+
712
jobs:
813
test:
914
timeout-minutes: 60

0 commit comments

Comments
 (0)