Merge beta into main (publish-images fix) - #241
Merged
Merged
Conversation
v1.16.1 failed to publish scheduled-task and containers-datadog: the ECR repositories don't exist, and the names were wrong anyway — the images are scopes/scheduled_task and scopes/containers_datadog (underscores, matching the source directories). Renames image_name, the artifact registration repository and the release table for both. Also adds a workflow_dispatch existing_tag input: a tag push runs the workflow at the tagged commit, so a fix on main can never reach an already-pushed tag without a dispatch path. CLI install moves from the alpha-packages channel to the released 2.10.0. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
Passes ref: existing_tag to docker-build-push-ecr (via actions-nullplatform#100) so a recovery dispatch builds the tagged content, not the main head the dispatch ran from. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
fix(publish): underscore image names + existing_tag recovery dispatch
fedemaleh
approved these changes
Sep 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.
Promotes beta → main. Beta is ahead by exactly one change (#240) — the publish-images fix:
scopes/scheduled_taskandscopes/containers_datadog(underscores, matching the ECR repositories that actually exist).scopes/containersuntouched.workflow_dispatchwithexisting_tagfor recovery/backfill, with therefpassthrough (via actions-nullplatform#100, merged) so a backfill builds the tag's commit, not the dispatch branch.Why main needs it
workflow_dispatchruns the workflow file at the dispatched ref. The dispatch frombetafailed at OIDC AssumeRole — the role's trust policy doesn't include therefs/heads/betasubject (run 33891484370, every job dead before any docker command). With the fix on main we can dispatch frommain, and if the trust policy rejects that subject too, cutv1.16.2from main — therefs/tags/*subject is proven to work.Recovery after merge
Fallback if AssumeRole rejects
refs/heads/main: tagv1.16.2from main.🤖 Generated with Claude Code