Skip to content

Commit 4747f14

Browse files
authored
Merge branch 'staging' into copilot/cache-pre-seed-falkordb-test-data
2 parents 5efaa1a + e0bcdf6 commit 4747f14

3 files changed

Lines changed: 30 additions & 1 deletion

File tree

.github/dependabot.yml

Lines changed: 21 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,4 +14,24 @@ updates:
1414
npm-minor-patch:
1515
update-types:
1616
- "patch"
17-
17+
18+
- package-ecosystem: "github-actions"
19+
directory: "/"
20+
schedule:
21+
interval: "daily"
22+
target-branch: "staging"
23+
groups:
24+
github-actions-minor-patch:
25+
update-types:
26+
- "patch"
27+
28+
- package-ecosystem: "pip"
29+
directory: "/"
30+
schedule:
31+
interval: "daily"
32+
target-branch: "staging"
33+
groups:
34+
pip-minor-patch:
35+
update-types:
36+
- "patch"
37+

.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)