Skip to content

Commit 0e33a2d

Browse files
committed
.github/workflows/ingest: Update schedule to 17:15 UTC
Avoid the start of the hour to avoid getting dropped during high load times. <nextstrain/.github#153>
1 parent 9f7b256 commit 0e33a2d

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

.github/workflows/fetch-and-ingest.yaml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,10 +17,12 @@ on:
1717
# Tool that deciphers this particular format of crontab string:
1818
# - https://crontab.guru/
1919
#
20-
# Runs at 5pm UTC (1pm EDT/10am PDT) since curation by NCBI happens on the East Coast.
20+
# Runs at 5:15pm UTC (1:15pm EDT/10:15am PDT) since curation by NCBI happens on the East Coast.
2121
# We were running into invalid zip archive errors at 9am PDT, so hoping an hour
2222
# delay will lower the error frequency
23-
- cron: '0 17 * * *'
23+
# Avoid start of the hour to avoid getting dropped during high load times:
24+
# - https://github.com/nextstrain/.github/issues/153
25+
- cron: '15 17 * * *'
2426

2527
repository_dispatch:
2628
types:

0 commit comments

Comments
 (0)