ci: disable scheduled daily builds, run only on PR/merge - #14
Merged
Conversation
Remove the daily cron schedules from the two workflows that had them so CI runs only on PR/merge (plus manual workflow_dispatch): - tmux-corpus.yml: drop the 10:17 UTC cron; keep pull_request + workflow_dispatch. The terminal-nightly job now gates on workflow_dispatch only (its schedule branch is dead). - ios-testflight.yml: drop the 09:10 UTC nightly cron; the beta upload is now manual-only via workflow_dispatch. The decide job's SHA-compare logic is preserved for the manual path. nightly.yml is unaffected: despite its name it triggers on push + workflow_dispatch, not a schedule.
evandhoffman
enabled auto-merge (squash)
June 21, 2026 19:43
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Remove the daily cron schedules from the two workflows that had them so CI runs only on PR/merge (plus manual
workflow_dispatch).Changes
tmux-corpus.yml: drop the17 10 * * *cron; keeppull_request+workflow_dispatch. Theterminal-nightlyjob now gates onworkflow_dispatchonly (itsschedulebranch was dead).ios-testflight.yml: drop the10 9 * * *nightly cron; the beta upload is now manual-only viaworkflow_dispatch. Thedecidejob's SHA-compare logic is preserved for the manual path; the leading design comment was updated to match.Not affected
nightly.yml: despite its name it triggers onpush+workflow_dispatch, not a schedule, so it already fits "PR/merges."push/pull_request/workflow_dispatchonly.