Replies: 1 comment
-
|
Scheduled workflows only run from the workflow file on the repository’s default branch, so first double-check that main is actually set as the default branch in Settings and that the workflow file exists on that branch. Also note that schedule runs are best-effort and use UTC, and very frequent crons like */1 aren’t a great test—try every 15 minutes or hourly and give it a few hours. If other repos in the same org run scheduled workflows fine and this repo still never shows a single scheduled run after confirming the default-branch setup and recommitting the workflow, it’s likely a repo-specific backend or org policy issue, and contacting GitHub Support with the repo name, workflow path, and cron line is the fastest next step. |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
Why are you starting this discussion?
Question
What GitHub Actions topic or product is this about?
General
Discussion Details
Hi everyone,
I have a strange issue with GitHub Actions in my public repository, and I wonder if anyone has ever experienced the same thing or has any solutions.
Problem summary:
My repo: yunanita/real-time-arimax (public, not a fork, only one branch main)
All workflows run perfectly when triggered manually (workflow_dispatch) or on push events.
Cron-based workflows (on: schedule: cron:) never ever run—the scheduled event never appears in the Actions tab, not even once, even after several days.
Other repos in my organization work just fine with scheduled workflows.
What I have already tried and checked:
Screenshot:

Questions:
Thank you so much for any help!
Beta Was this translation helpful? Give feedback.
All reactions