ci: migrate release pipeline onto the reusable homeboy-action release workflow - #3520
Merged
Merged
Conversation
… workflow Replace the hand-rolled ~200-line continuous-release pipeline with a ~40-line caller of Extra-Chill/homeboy-action/.github/workflows/release.yml@v2. Releasable-commit detection, dry-run version prediction, failed-SHA retry protection (now keyed on tooling identity and bypassed on manual dispatch, per homeboy-action#257), GitHub App token, and the release call itself are owned upstream and inherited here. Triggers, permissions, the dry-run dispatch input, and the WordPress extension args are unchanged. First consumer of the reusable release workflow (homeboy-action#472).
6 tasks
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.
What
Replaces the hand-rolled ~200-line
release.ymlwith a ~40-line caller ofExtra-Chill/homeboy-action/.github/workflows/release.yml@v2(shipped in homeboy-action v2.16.1 via #473 + #474).Before / after
Before: this repo re-implemented, job by job — releasable-commit grep, dry-run version prediction,
actions/cachefailed-SHA marker acrosscheck/record-failure/clear-failure, app-token generation,persist-credentials: falsecheckout, the release call.After:
Behavior
Unchanged: triggers (push main + dispatch with
dry-run), permissions, WordPress extension args, skip onrelease:head commits.Inherited improvements this repo did not have: failed-SHA marker keyed on
tooling-identityso a fixed binary/extension self-heals a blocked SHA, and manual dispatch always bypasses the marker (homeboy-action#257).Added:
concurrency: { group: release, cancel-in-progress: false }so two fast merges queue instead of racing a tag.This is the first real run of
release.yml@v2The reusable workflow passes homeboy-action's shape gates but has not executed end to end anywhere. After merging, dispatch this workflow with
dry-run: truebefore any releasable commit lands to prove the check job (version prediction + tooling-identity) works in a consumer context. This PR itself isci:and will not trigger a release.Deploy
Releases are not auto-deployed by this change. Network deploy is moving to a single push-based workflow in
extrachill-network(tracked there); until that lands, deploys stay manual.Refs Extra-Chill/homeboy-action#472
AI-generated by Extra Chill Bot via Kimaki; reviewed by nobody yet.