ci(promote): add force_skip_soak input to break the soak deadlock#443
Merged
icebear0828 merged 1 commit intodevfrom May 5, 2026
Merged
ci(promote): add force_skip_soak input to break the soak deadlock#443icebear0828 merged 1 commit intodevfrom
icebear0828 merged 1 commit intodevfrom
Conversation
The soak check measures `now - dev_HEAD_timestamp >= 24h`, which means every new merge into dev resets the clock. Under any non-trivial merge cadence, dev never satisfies the soak gate and master stagnates: PRs #437/#438/#439/#440/#442 all stacked on dev for a week with no promotion. Add a `force_skip_soak` boolean input to workflow_dispatch (default false). Schedule cron remains untouched and continues to enforce the 24h rule. Only manual triggers can bypass, and only when the operator explicitly sets the input to true — intended for sync-back / merge commits whose content has actually been on dev long enough but whose HEAD timestamp is misleadingly fresh. Test plan: yaml syntax verified via js-yaml. Functional verification will be the next manual workflow_dispatch run with the input set.
icebear0828
added a commit
that referenced
this pull request
May 5, 2026
The soak check measures `now - dev_HEAD_timestamp >= 24h`, which means every new merge into dev resets the clock. Under any non-trivial merge cadence, dev never satisfies the soak gate and master stagnates: PRs #437/#438/#439/#440/#442 all stacked on dev for a week with no promotion. Add a `force_skip_soak` boolean input to workflow_dispatch (default false). Schedule cron remains untouched and continues to enforce the 24h rule. Only manual triggers can bypass, and only when the operator explicitly sets the input to true — intended for sync-back / merge commits whose content has actually been on dev long enough but whose HEAD timestamp is misleadingly fresh. Test plan: yaml syntax verified via js-yaml. Functional verification will be the next manual workflow_dispatch run with the input set. Co-authored-by: icebear0828 <icebear0828@users.noreply.github.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.
Summary
now - dev HEAD timestamp >= 24h. Under any non-trivial merge cadence, every new commit resets the clock and dev never satisfies the gate — PRs fix(translation): hint upstream model to omit empty pages on Read tool #437–perf(proxy): WebSocket keepalive ping prevents middlebox idle drops #442 have been stuck on dev for a week with no promotion to master.force_skip_soak: booleaninput toworkflow_dispatch(defaultfalse). Cron-triggered runs remain untouched and continue to enforce the 24h rule.Test plan
js-yamlparses the workflow file;workflow_dispatch.inputs.force_skip_soakregistered correctly.gh workflow run promote-dev-to-master.yml --ref dev -f force_skip_soak=trueand confirm soak step printsSoak skipped via workflow_dispatch inputand master fast-forwards.Notes
inputs.force_skip_soakis empty for non-dispatch triggers, evaluates to not-true).