Skip to content

Commit 9e4b288

Browse files
authored
fix(ci): adjust cron schedules (#8592)
## Problem Our scheduled runs happen too often. We now have a stable baseline - and we can limit these runs. We are also adjusting triggering evented runs when a PR is opened, and when a PR is merged*. Reducing the scheduled run makes more sense now. ## Solution changing these runs to happen twice daily
1 parent d09d679 commit 9e4b288

5 files changed

Lines changed: 5 additions & 5 deletions

File tree

.github/workflows/ci-dgraph-code-coverage.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ on:
1212
branches:
1313
- main
1414
schedule:
15-
- cron: "0 0,6,12,18 * * *"
15+
- cron: "0 0 * * *" # 1-run per day
1616
jobs:
1717
dgraph-code-coverage:
1818
if: github.event.pull_request.draft == false

.github/workflows/ci-dgraph-ldbc-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ on:
1212
branches:
1313
- main
1414
schedule:
15-
- cron: "30 * * * *"
15+
- cron: "0 0 * * *" # 1-run per day
1616
jobs:
1717
dgraph-ldbc-tests:
1818
runs-on: ubuntu-20.04

.github/workflows/ci-dgraph-load-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ on:
1212
branches:
1313
- main
1414
schedule:
15-
- cron: "0 0,6,12,18 * * *"
15+
- cron: "0 0,12 * * *" # 2-runs per day
1616
jobs:
1717
dgraph-load-tests:
1818
if: github.event.pull_request.draft == false

.github/workflows/ci-dgraph-tests-arm64.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ on:
1212
branches:
1313
- main
1414
schedule:
15-
- cron: "0 0,6,12,18 * * *"
15+
- cron: "0 0,12 * * *" # 2-runs per day
1616
jobs:
1717
dgraph-tests:
1818
if: github.event.pull_request.draft == false

.github/workflows/ci-dgraph-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ on:
1212
branches:
1313
- main
1414
schedule:
15-
- cron: "0 0,6,12,18 * * *"
15+
- cron: "0 0,12 * * *" # 2-runs per day
1616
jobs:
1717
dgraph-tests:
1818
if: github.event.pull_request.draft == false

0 commit comments

Comments
 (0)