We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9f7b256 commit 0e33a2dCopy full SHA for 0e33a2d
.github/workflows/fetch-and-ingest.yaml
@@ -17,10 +17,12 @@ on:
17
# Tool that deciphers this particular format of crontab string:
18
# - https://crontab.guru/
19
#
20
- # Runs at 5pm UTC (1pm EDT/10am PDT) since curation by NCBI happens on the East Coast.
+ # Runs at 5:15pm UTC (1:15pm EDT/10:15am PDT) since curation by NCBI happens on the East Coast.
21
# We were running into invalid zip archive errors at 9am PDT, so hoping an hour
22
# delay will lower the error frequency
23
- - cron: '0 17 * * *'
+ # 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 * * *'
26
27
repository_dispatch:
28
types:
0 commit comments