Skip to content

Commit 69164dd

Browse files
committed
fix(ci): move nightly bench inclusion sweep to 06:00 UTC
The sweep resolves the nightly git tag + docker image for the current day and verifies the tag exists. It was scheduled at 03:30 UTC, before the Nightly Release Tag workflow (04:00 UTC) creates that tag, so "Verify source git ref" failed with "couldn't find remote ref". Align it with the other nightly consumers (spartan-bench, deploy-next-net) at 06:00 UTC.
1 parent 49dbe87 commit 69164dd

1 file changed

Lines changed: 5 additions & 1 deletion

File tree

.github/workflows/nightly-bench-inclusion-sweep.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,11 @@ name: Nightly Bench Inclusion Sweep
99

1010
on:
1111
schedule:
12-
- cron: "30 3 * * *"
12+
# 06:00 UTC, matching the other nightly consumers (spartan-bench, deploy-next-net).
13+
# The nightly git tag + docker image this sweep resolves are produced by the
14+
# Nightly Release Tag workflow at 04:00 UTC; running earlier races that job and
15+
# fails "Verify source git ref" with "couldn't find remote ref".
16+
- cron: "0 6 * * *"
1317
workflow_dispatch:
1418
inputs:
1519
docker_image:

0 commit comments

Comments
 (0)