ci: remove legacy Runway per-platform workflows (phase 2 cleanup)#29298
Merged
weitingsun merged 6 commits intoMay 6, 2026
Merged
Conversation
Contributor
|
CLA Signature Action: All authors have signed the CLA. You may need to manually re-run the blocking PR check if it doesn't pass in a few minutes. |
Codecov Report✅ All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@
## main #29298 +/- ##
===========================================
- Coverage 82.25% 64.13% -18.12%
===========================================
Files 5125 5130 +5
Lines 135641 135899 +258
Branches 30531 30597 +66
===========================================
- Hits 111565 87165 -24400
- Misses 16458 41989 +25531
+ Partials 7618 6745 -873 ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
…combined-workflows
Contributor
🔍 Smart E2E Test Selection⏭️ Smart E2E selection skipped - draft PR All E2E tests pre-selected. |
Contributor
|
✅ E2E Fixture Validation — Schema is up to date |
…combined-workflows
…rkflows' of github.com:MetaMask/metamask-mobile into wsun/remove-old-runway-ota-and-native-build-combined-workflows
|
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 subscribe to this conversation on GitHub.
Already have an account?
Sign in.
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
Phase 2 cleanup of the Runway workflow split. Removes the legacy per-platform Runway entry workflows now that Runway has been flipped to dispatch the combined OTA-only and build-only workflows introduced in phase 1, and
release/7.73.x/release/7.74.xare no longer actively maintained.Context
Phase 1 (previous PR) added 5 new workflow files without touching anything existing:
runway-ota-resolve-context.ymlrunway-production-builds.ymlrunway-rc-builds.ymlrunway-ota-production.ymlrunway-ota-rc.ymlThat PR intentionally deferred the cleanup so Runway could keep dispatching the old per-platform workflow names against
release/7.73.xandrelease/7.74.x(which cannot receive cherry-picks).What this PR does
runway-ios-production-workflow.ymlrunway-android-production-workflow.ymlrunway-ios-rc-workflow.ymlrunway-android-rc-workflow.ymlrunway-ota-build-core.yml→auto-rc-ota-build-core.ymlto reflect that its only remaining caller isbuild-rc-auto.yml(auto-RC on push), not Runway.runway-ota-resolve-context.ymlfrom phase 1 instead of keeping thedecide+resolve-prlogic inline. Behaviour is identical; the logic is now shared with the OTA-only Runway workflows.build-rc-auto.ymluses:paths (two call sites) and the header comment to point at the renamed core.What this PR does NOT change
build-rc-auto.yml— same OTA-vs-build auto-detection, same parallel platform dispatch, same Slack notification.Precondition for merge
Before merging this PR, verify that:
runway-production-builds.yml,runway-rc-builds.yml,runway-ota-production.yml,runway-ota-rc.yml).release/7.73.xandrelease/7.74.xare no longer being hotfixed via Runway dispatch (they can still receive direct pushes —build-rc-auto.ymlon those branches uses the files present on that ref, which still include the legacy core until those branches are fully retired).Changelog
CHANGELOG entry: null
Related issues
Fixes:
Manual testing steps
Screenshots/Recordings
Before
After
Pre-merge author checklist
Performance checks (if applicable)
trace()for usage andaddTokenfor an exampleFor performance guidelines and tooling, see the Performance Guide.
Pre-merge reviewer checklist
Note
Medium Risk
Moderate risk because it changes GitHub Actions workflow entry points and reusable workflow wiring for OTA-vs-build detection, which could break release/RC automation if references or outputs diverge.
Overview
Refactors the auto-RC release flow by replacing the legacy reusable
runway-ota-build-core.ymlwith a newauto-rc-ota-build-core.ymlthat delegates OTA bump/PR resolution torunway-ota-resolve-context.yml, while keeping the same OTA-vs-build branching behavior.Cleans up CI by deleting the four per-platform Runway
workflow_dispatchentry workflows (iOS/Android, RC/production) and updatingbuild-rc-auto.ymlto call the renamed core workflow for both iOS and Android RC triggers.Reviewed by Cursor Bugbot for commit 54fc5ee. Bugbot is set up for automated code reviews on this repo. Configure here.