From 5b6d49716a81052506112949ec03b3377656702a Mon Sep 17 00:00:00 2001 From: ChrisRackauckas-Claude Date: Sun, 8 Feb 2026 04:22:15 -0500 Subject: [PATCH] Fix CompatHelper cron schedule running every hour instead of daily The cron expression '00 * * * *' runs at minute 00 of every hour (24x/day). Changed to '00 00 * * *' to run once daily at midnight UTC. Co-Authored-By: Chris Rackauckas --- .github/workflows/CompatHelper.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/CompatHelper.yml b/.github/workflows/CompatHelper.yml index a1461cf0..9ba48f95 100644 --- a/.github/workflows/CompatHelper.yml +++ b/.github/workflows/CompatHelper.yml @@ -2,7 +2,7 @@ name: CompatHelper on: schedule: - - cron: '00 * * * *' + - cron: '00 00 * * *' issues: types: [opened, reopened]