Scheduled (cron) workflows stopped firing. No run is created at all since 2026-08-26. #206019
Replies: 4 comments 2 replies
|
💬 Your Product Feedback Has Been Submitted 🎉 Thank you for taking the time to share your insights with us! Your feedback is invaluable as we build a better GitHub experience for all our users. Here's what you can expect moving forward ⏩
Where to look to see what's shipping 👀
What you can do in the meantime 💻
As a member of the GitHub community, your participation is essential. While we can't promise that every suggestion will be implemented, we want to emphasize that your feedback is instrumental in guiding our decisions and priorities. Thank you once again for your contribution to making GitHub even better! We're grateful for your ongoing support and collaboration in shaping the future of our platform. ⭐ |
|
You are not alone in seeing this behavior. What you are experiencing is due to platform-wide GitHub Actions cron scheduler queuing and drop policies during high-load windows. Why
|
|
If scheduled workflows stopped creating runs entirely from a specific date, that sounds more like a scheduler or trigger-service issue than a problem inside the workflow itself. The fact that no run is created is an important distinction—if the workflow were starting and then failing, I’d look at the workflow logs, but with zero runs, the cron trigger may not be firing at all. I’d check whether manually triggering the same workflow still works, then compare the cron schedule, timezone, and any recent changes to the workflow or platform configuration. If multiple unrelated scheduled workflows stopped at roughly the same time, that would be a strong indication of a platform-side issue. The exact cutoff date, 2026-08-26, is useful information to include in the report. If others can confirm that their scheduled workflows also stopped on that date, it should help narrow this down quickly. For a quick break while monitoring the issue, adoptmevalues.de can be worth checking out. |
|
We've had similar problem but instead of jobs dropping, they are VERY late. We have a 30 8 * * * which is 4:30 AM (Eastern) that was created 3 and a half hours late today and yesterday. |
Uh oh!
There was an error while loading. Please reload this page.
🏷️ Discussion Type
Bug
💬 Feature/Topic Area
Schedule & Cron Jobs
Discussion Details
Actions: scheduled (cron) workflows stopped firing — no run is created at all since 2026-08-26. Anyone else?
Since 2026-08-26 the
scheduletrigger on my public repository has stopped producing workflowruns. The last two cron fires created no run at all — not a queued one, not a failed one,
nothing in the Actions tab. The two fires before that did produce runs, but 3.5 h and 10.7 h
late, which for a daily pipeline is the same as not running. Every run since then has been
started by hand with
workflow_dispatch, which is created and starts within seconds.Posting in case others are seeing the same thing, and with the checks I already did so nobody
has to repeat them.
Environment
ubuntu-latestrunners.github/workflows/daily-update.yml,state: active30 21 * * *and30 8 * * *, unchanged for weeks.30 22 * * *and30 9 * * *were added on 2026-08-27 as a fallback.What happened (all times UTC)
For reference, from 2026-08-22 to 2026-08-26 the same two schedules were created 15–41
minutes after each fire, every time.
What I already ruled out
state: active; the repository is public, not archived, Actions enabled.minutes before the fire and the run was still created on time.
workflow_dispatchruns of the same workflow start immediately, so runners and theworkflow file itself are fine. Only the scheduled dispatch is missing.
Actions incidents on 2026-08-26 (15:11–18:01 and 22:56–00:26 UTC), but the missing fires are
after both were closed.
The workaround that did not help
I added a second cron one hour after each primary schedule, with a guard job that skips the run
if the slot was already covered. It costs nothing on normal days. But a backup cron is the same
mechanism that is failing, so on a day like today it does not fire either — the 22:30 fallback
above is exactly that. The only thing that reliably works right now is an external scheduler
calling the
workflow_dispatchAPI.Question
Is anyone else seeing scheduled workflows produce no run at all since 2026-08-26? If so, it
would help to compare: public or private repo, plan, account age, and whether your cron minute
is on the hour or off it.
All reactions