From 1733163746a724b8989caaa8f8c44bfe1290ab8d Mon Sep 17 00:00:00 2001 From: "omegent-app[bot]" <306514130+omegent-app[bot]@users.noreply.github.com> Date: Sun, 9 Aug 2026 19:07:28 +0000 Subject: [PATCH] ci: point the adopted web-preview workflow at the fork's runners MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Upstream's #5465 runs on blacksmith-8vcpu-ubuntu-2404. Every fork workflow uses GitHub-hosted runners, so the job would queue forever if anyone applied the preview:web label. It also needs VERCEL_* secrets the fork does not set, so the workflow stays dormant either way — this just removes the footgun. Co-authored-by: Patrick Roza <42661+patroza@users.noreply.github.com> --- .github/workflows/web-preview.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/web-preview.yml b/.github/workflows/web-preview.yml index f9cc3b063fcd..ac3f58b4c55b 100644 --- a/.github/workflows/web-preview.yml +++ b/.github/workflows/web-preview.yml @@ -37,7 +37,10 @@ jobs: github.event.pull_request.head.repo.full_name == github.repository && contains(github.event.pull_request.labels.*.name, 'preview:web') && (github.event.action != 'labeled' || github.event.label.name == 'preview:web') - runs-on: blacksmith-8vcpu-ubuntu-2404 + # Upstream runs this on Blacksmith; every fork workflow uses GitHub-hosted + # runners, so a Blacksmith job here would queue forever if anyone ever + # applied the preview:web label. + runs-on: ubuntu-24.04 timeout-minutes: 10 env: VERCEL_TOKEN: ${{ secrets.VERCEL_TOKEN }}