Scheduled workflow never triggers despite correct config (private repo) #195441
Replies: 2 comments
-
|
💬 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. ⭐ |
Beta Was this translation helpful? Give feedback.
-
|
Your YAML looks structurally fine, and A few schedule-specific things to check:
- cron: '25 1 * * 1-5'That means 01:25 UTC, Monday-Friday. Depending on your local timezone, the run may appear on a different local date/time than expected.
GitHub documents that
You said the file is on gh repo view --json defaultBranchRef --jq .defaultBranchRef.name
This helps separate "the workflow exists" from "GitHub indexed the schedule trigger": gh api repos/OWNER/REPO/actions/workflows --jq '.workflows[] | {name,path,state}'If the workflow name/path looks wrong, or if the Actions UI only shows manual trigger forever, make a tiny commit touching the workflow file on
schedule:
- cron: '*/10 * * * *'Wait 20-30 minutes. If that triggers, your original daily schedule is probably fine and the issue was timing/expectation. If it still never triggers while manual dispatch works, I would open a Support ticket with the workflow file path, repo visibility, default branch, and the exact UTC windows when runs should have appeared. |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
🏷️ Discussion Type
Bug
💬 Feature/Topic Area
ARC (Actions Runner Controller)
Discussion Details
Describe the issue
My scheduled workflow (
.github/workflows/run.yml) never triggers. Manualworkflow_dispatchworks perfectly and sends WeChat notifications. The repository is private.Configuration details
mainWorkflow content
Beta Was this translation helpful? Give feedback.
All reactions