fix(release:PLA-1398): unblock docker publish jobs#71
Merged
Conversation
b2a0d55 to
17c677e
Compare
There was a problem hiding this comment.
Pull request overview
This PR updates the GitHub Actions release workflow to unblock Docker/GHCR/ECR publishing on morpho-main pushes by removing dependencies on release-preparation/release jobs that may be skipped, allowing Docker image build jobs to start immediately.
Changes:
- Removed
needs: [prepare-release, release]from thedocker-build-amd64job. - Removed
needs: [prepare-release, release]from thedocker-build-arm64job. - Simplified both jobs’ job-level condition from
always() && ...to onlygithub.ref == 'refs/heads/morpho-main'.
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
Remove skipped release preparation jobs from the Docker build job dependencies so morpho-main pushes actually start the image publishing jobs instead of producing a startup_failure check suite. Use only actions allowed by morpho-org policy by replacing the third-party release PR action with gh commands and using Docker Buildx setup instead of Blacksmith. Generated with [Devin](https://cli.devin.ai/docs) Co-Authored-By: Devin <158243242+devin-ai-integration[bot]@users.noreply.github.com>
17c677e to
1fd0bb6
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
morpho-mainpushes.morpho-maininstead of depending on skipped release-preparation jobs.Changes
needs: [prepare-release, release]from the amd64 Docker publishing job.needs: [prepare-release, release]from the arm64 Docker publishing job.peter-evans/create-pull-requestwith aghCLI script usingGITHUB_TOKEN.useblacksmith/setup-docker-builderwithdocker/setup-buildx-actionin both Docker build jobs.actionlintand checked repository ECR variables are configured.make agent-review-loadpasses;make agent-checkis blocked by pre-existing generatedreview/repo-map.mdordering drift.Linear
Generated with Devin