fix: run browser artifact detect job on ubuntu-latest-large - #3937
Open
harsh-joshi99 wants to merge 1 commit into
Open
fix: run browser artifact detect job on ubuntu-latest-large#3937harsh-joshi99 wants to merge 1 commit into
harsh-joshi99 wants to merge 1 commit into
Conversation
The detect-browser-destination-changes job requests 'ubuntu-latest', a runner label this org does not serve, so the job hangs in the queue indefinitely and the browser artifact is never built (verified on staging: the job sat ~1h13m unassigned while ubuntu-latest-large jobs completed). Every other job in the repo, including this workflow's own build job, uses ubuntu-latest-large. Align the detect job. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
varadarajan-tw
approved these changes
Aug 12, 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.
Problem
The
detect-browser-destination-changesjob inpublish-browser-destinations.ymlrequestsruns-on: ubuntu-latest, a runner label this org does not serve. As a result the job hangs in the queue indefinitely and the browser artifact is never built.Verified on
staging: aPublishcommit's run sat ~1h13m with the detect job unassigned ("Waiting for a runner to pick up this job") whileubuntu-latest-largejobs (CI, etc.) completed normally. After switching the label toubuntu-latest-large, the detect job was picked up immediately and the build produced the artifact.Fix
Change the detect job to
ubuntu-latest-large, matching this workflow's ownbuild-browser-destinationsjob (line 75) and every other job in the repo. This targets the #3787 branch so the fix lands with the workflow when it merges tomain.Co-Authored-By: Claude Opus 4.8 (1M context) noreply@anthropic.com