You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I created a public repository 3 days ago with a GitHub Actions workflow that uses a cron schedule trigger. The workflow works perfectly when triggered manually (workflow_dispatch) or via push events, but the scheduled cron trigger (0 1 * * *) has never executed automatically.
Configuration
Repository: sniperhgy/sign_baidu_tieba (public, 2 days old)
ActionsBuild, test, and automate your deployment pipeline with world-class CI/CDQuestionAsk and answer questions about GitHub features and usageSchedule & Cron JobsTopics about scheduled workflows, cron timing, and related scheduling concerns in GitHub Actions.Welcome 🎉Used to greet and highlight first-time discussion participants. Welcome to the community!source:uiDiscussions created via Community GitHub templates
1 participant
Heading
Bold
Italic
Quote
Code
Link
Numbered list
Unordered list
Task list
Attach files
Mention
Reference
Menu
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
Uh oh!
There was an error while loading. Please reload this page.
-
🏷️ Discussion Type
Question
💬 Feature/Topic Area
Schedule & Cron Jobs
Discussion Details
Problem
I created a public repository 3 days ago with a GitHub Actions workflow that uses a cron schedule trigger. The workflow works perfectly when triggered manually (workflow_dispatch) or via push events, but the scheduled cron trigger (
0 1 * * *) has never executed automatically.Configuration
.github/workflows/sign_baidu_tieba.yaml0 1 * * *(daily at 01:00 UTC)What I've checked
✅ Branch protection rules: None
✅ Actions permissions: "Allow all actions and reusable workflows"
✅ Workflow permissions: Correctly configured
✅ Workflow file YAML syntax: Valid
✅ Manual trigger (workflow_dispatch): Works (9 successful runs)
✅ Push trigger: Works (automatic execution confirmed)
❌ Scheduled cron trigger: Never executed (0 runs)
Expected behavior
The workflow should automatically execute at 01:00 UTC daily, showing as
event: scheduledin the run history.Actual behavior
Only manual and push-triggered runs appear. No scheduled runs, despite the cron being properly configured.
Question
Is there a known limitation for cron schedules on newly created repositories? If so, how long does it typically take for cron to be activated?
Repository: https://github.com/sniperhgy/sign_baidu_tieba
Beta Was this translation helpful? Give feedback.
All reactions