Hourly scheduled workflow suddenly skips multiple consecutive triggers #207247
Replies: 2 comments 3 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. ⭐ |
|
Your evidence rules out the workflow job itself: if GitHub documents two important properties of I would capture these checks before changing anything else: gh api repos/OWNER/REPO/actions/workflows/hourly-jobs.yml \
--jq '{id,path,state,created_at,updated_at}'
gh run list --repo OWNER/REPO \
--workflow hourly-jobs.yml --event schedule --limit 20
gh api repos/OWNER/REPO \
--jq '{default_branch,archived,disabled}'If the workflow state is not gh workflow disable hourly-jobs.yml --repo OWNER/REPO
gh workflow enable hourly-jobs.yml --repo OWNER/REPOThen make a real edit to the cron line on the default branch (for example If no run object appears after several windows, report the workflow ID, repository, UTC windows, and the successful manual run URL to GitHub Support. There is no repository-side log for an event that the scheduler never emitted. For anything requiring hourly delivery guarantees, keep the external scheduler calling Reference: https://docs.github.com/en/actions/reference/workflows-and-actions/workflow-syntax#onschedule |
Uh oh!
There was an error while loading. Please reload this page.
🏷️ Discussion Type
Bug
💬 Feature/Topic Area
Schedule & Cron Jobs
Discussion Details
My hourly scheduled workflow has suddenly stopped triggering reliably.
The workflow file is
.github/workflows/hourly-jobs.ymlon the repository’s defaultmainbranch. It is enabled and contains:All reactions