feat(integ-runner): add --update-from-tags for sequential tag deployment#1595
Merged
Merged
Conversation
Adds a new `--update-from-tags` CLI option that deploys snapshots from specified git tags in sequence before deploying the current code. This enables on-call engineers to verify that a fix is safe for customers currently on a broken version by exercising the full upgrade path. The option implies `--force` and replaces the normal merge-base update workflow. It fails fast if a snapshot does not exist at any specified tag. Also fixes a pre-existing bug where `--allow-delete-failures` was not being passed across the worker pool serialization boundary.
Contributor
Dependency Review✅ No vulnerabilities or license issues or OpenSSF Scorecard issues found.Scanned FilesNone |
mrgrain
approved these changes
Jun 4, 2026
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
--update-from-tags <tag1>,<tag2>,...CLI option to integ-runner that deploys snapshots from specified git tags in sequence before deploying the current code--update-from-tags v2.150.0,v2.151.0proves the upgrade path N → N+1 → fix is safe)--allow-delete-failureswas not passed across the worker pool boundaryBehavior
--force(all matched tests deploy regardless of snapshot diff)allowDestroychecks apply at every transition--no-update-workflow--update-on-failedsemantics (updates snapshot on success)Test plan
--no-update-workflow)By submitting this pull request, I confirm that my contribution is made under the terms of the Apache-2.0 license