ci: disable scheduled workflow runs - #39
Merged
Merged
Conversation
Comment out the schedule block in every workflow that carried one, so nothing in this repository runs on a cron. Push, pull_request, release, workflow_dispatch and repository_dispatch are all untouched. The cron expressions are kept as comments rather than deleted: restoring a schedule is uncommenting one block, and the reasoning behind each chosen time stays beside it. Comments and docs that stated a cadence as current behaviour are corrected here too. Signed-off-by: Vyncint Ng <vyncint@icloud.com>
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.
What & why
Nothing in this repository runs on a cron any more. The
schedule:block iscommented out in every workflow that had one:
install.yml(47 7 * * 1)pins.yml(17 6 * * 1)stress.yml(29 6 * * 1)Every other trigger is untouched —
push,pull_request,release,workflow_dispatchandrepository_dispatchall behave exactly as before.The cron expressions are kept as comments rather than deleted, so restoring a
schedule is uncommenting one block, and the reasoning behind each chosen time
stays next to it.
Comments and prose that stated a cadence as current behaviour are corrected
in the same commit. Prose explaining why a cadence was chosen is left alone —
it still explains the block sitting right there, commented out.
pins.ymlis now dispatch-only, so an upstream cuda-oxide or reconverge moveis noticed when someone runs it. CONTRIBUTING §9 said the workflow was
scheduled; it now says how to reach it. (§9 is a per-repo section, not part of
the generated §4–8.)
stress.yml'shuntjob keeps|| github.event_name == 'schedule'in itsif:.That branch is unreachable while the cron is commented out, and leaving it means
restoring the schedule stays a one-block uncomment.
What this does not do
CHANGELOG.mdentry: nothing here is user-facing.the YAML still parses and every workflow keeps at least one trigger. Both
were verified before pushing.
not CI.
Checklist
CHANGELOG.md— n/a, not user-facing