Skip to content

Commit ba7d334

Browse files
committed
Move tier3 and weekly-checks to midweek nights
These heavy jobs were running Friday and Saturday nights (US Eastern), which conflicts with late-night development work. Move them to Tuesday and Wednesday nights instead: - tier3: Saturday 3 AM UTC → Wednesday 3 AM UTC - weekly-checks: Sunday 3 AM UTC → Thursday 3 AM UTC
1 parent b796529 commit ba7d334

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/ponyc-tier3.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ on:
88
required: false
99
default: "main"
1010
schedule:
11-
- cron: "0 3 * * 6"
11+
- cron: "0 3 * * 3"
1212

1313
concurrency:
1414
group: ponyc-tier3-${{ github.ref }}

.github/workflows/ponyc-weekly-checks.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ on:
88
required: false
99
default: "main"
1010
schedule:
11-
- cron: "0 3 * * 0"
11+
- cron: "0 3 * * 4"
1212

1313
concurrency:
1414
group: ponyc-weekly-checks-${{ github.ref }}

0 commit comments

Comments
 (0)