Run production validation from release workflow - #50
Merged
Merged
Conversation
rusenask
force-pushed
the
fix/production-workflow-call
branch
from
September 9, 2026 19:21
e7afb5d to
6d6403e
Compare
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
productionconfirmation requirement for manual dispatchesEvidence
push)make release-workflow-testgit diff --checkRelease safety
The skipped run did not promote the version image, chart, latest tag, or GitHub Release. The commit-scoped staging image remains retry-safe.
Note
Medium Risk
Changes when production k3s validation runs in the release path, affecting release gating before promote/chart steps, though manual production runs still require explicit confirmation.
Overview
Fixes production live validation being skipped when the release pipeline calls the reusable
production-e2eworkflow. Reusable runs inherit the caller鈥檚 event (e.g.pushon tag), so the old guard that only allowedworkflow_callor manual confirmation never matched and the job did not run.The job
ifis nowgithub.event_name != 'workflow_dispatch' || inputs.confirmation == 'production', so tag-driven release calls proceed while manualworkflow_dispatchstill requires typingproduction..test/release-workflow.shpins that condition with agrepassertion so the behavior cannot regress silently.Reviewed by Cursor Bugbot for commit e7afb5d. Configure here.