fix(ci): decouple proto sync from runtime images - #587
Open
Verolop wants to merge 1 commit into
Open
Conversation
- Create dependency PRs without waiting for runtime images or modifying image defaults. - Add validated manual dispatch and SHA-keyed failure reporting with isolated permissions. Signed-off-by: Verónica López <veronica.lopez@supabase.io>
Verolop
force-pushed
the
fix/proto-sync-regression
branch
from
August 18, 2026 08:59
ee9c0ea to
310d142
Compare
This comment has been minimized.
This comment has been minimized.
🔬 Go Test Coverage ReportSummary
Status✅ PASS DetailShow New Coverage |
niconosenzo
reviewed
Aug 18, 2026
Comment on lines
+5
to
+10
| workflow_dispatch: | ||
| inputs: | ||
| sha: | ||
| description: Full multigres commit SHA to sync | ||
| required: true | ||
| type: string |
niconosenzo
approved these changes
Aug 18, 2026
niconosenzo
left a comment
Contributor
There was a problem hiding this comment.
Solid! thanks for working on this.
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.
Description
this PR restores reliable proto synchronization by removing the runtime-image gate introduced in #519.
Proto sync requires only the upstream commit, but the workflow checked for images seconds after the corresponding builds started and aborted before creating a PR. The workflow now updates only the Multigres dependency. Runtime image defaults remain unchanged and will be promoted separately after canary validation in #586.
Main changes
image_defaults.gorewrites from proto sync.proto-sync-reporting.yaml, keyed by upstream SHA and invoked only on failure.Closes #585