Skip to content

Commit 1609eca

Browse files
authored
[infra] Stagger daily cron jobs to avoid browserstack timeouts (#46676)
1 parent 3592ec3 commit 1609eca

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

.circleci/config.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -767,7 +767,8 @@ workflows:
767767
react-18-cron:
768768
triggers:
769769
- schedule:
770-
cron: '0 0 * * *'
770+
# Stagger daily cron job to prevent Browserstack timeouts
771+
cron: '40 23 * * *'
771772
filters:
772773
branches:
773774
only:
@@ -818,7 +819,8 @@ workflows:
818819
react-next-cron:
819820
triggers:
820821
- schedule:
821-
cron: '0 0 * * *'
822+
# Stagger daily cron job to prevent Browserstack timeouts
823+
cron: '50 23 * * *'
822824
filters:
823825
branches:
824826
only:

0 commit comments

Comments
 (0)