Scheduled workflows not being trigerred #185352
Replies: 3 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.
-
|
👋 Thank you for reporting the issue with scheduled workflows not triggering. We identified a related change from last week that was rolled back today. Any commit pushed to the default branch will resync the impacted scheduled workflows and resolve any scheduling issues you may be experiencing. If you continue to experience issues with syncing schedules, please reply with a comment including the following:
Note: Schedules that run during periods of high load (e.g., midnight UTC) may be delayed or, if load is sufficiently high, potentially dropped. Please see our docs for further information. |
Beta Was this translation helpful? Give feedback.
-
|
I ran into this too. Scheduled workflows can silently stop running after 60 days of repo inactivity, or sometimes just not trigger reliably. What I ended up doing is adding a dead man's switch at the end of the workflow — a heartbeat ping to an external monitor. If the ping stops arriving, I get a Slack webhook. steps:
- name: Your actual job
run: ./do-stuff.sh
- name: Heartbeat
if: success()
uses: Scolliq/gabe-action@v1
with:
ping-url: ${{ secrets.GABE_PING_URL }}Gabe is open source and free for 3 monitors. Catches the exact scenario you are describing. |
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?
Bug
What GitHub Actions topic or product is this about?
General
Discussion Details
Hello,
Scheduled workflows are not being enqueued for my private repository despite the workflow files being present on the default branch and set to active. Manual workflow_dispatch runs work, but no runs with event "schedule" are appearing.
Beta Was this translation helpful? Give feedback.
All reactions