From ac0df39e92b34eb2fabffcac59a4b811b452e58b Mon Sep 17 00:00:00 2001 From: Ned Batchelder Date: Sat, 22 Jan 2022 07:22:15 -0500 Subject: build: correct the cron time of the Python nightly tests --- .github/workflows/python-nightly.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/python-nightly.yml b/.github/workflows/python-nightly.yml index 1bd83737..58b18d3f 100644 --- a/.github/workflows/python-nightly.yml +++ b/.github/workflows/python-nightly.yml @@ -5,9 +5,10 @@ name: "Python Nightly Tests" on: schedule: - # Run at 2:22am early Saturday morning https://crontab.guru/#22_2_*_*_6 + # Run at 2:22am early Saturday morning Eastern time (6/7:22 UTC) # so that we get tips of CPython development tested. - - cron: "22 2 * * 6" + # https://crontab.guru/#22_7_*_*_6 + - cron: "22 7 * * 6" workflow_dispatch: defaults: -- cgit v1.2.1