From 7e366b6d173aa043b57aa7862d982d8c13a183b6 Mon Sep 17 00:00:00 2001 From: Molecule AI App-FE Date: Fri, 24 Apr 2026 17:40:18 +0000 Subject: [PATCH] fix(ci): use self-hosted runner for auto-promote workflow MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ubuntu-latest jobs die in ~2s for private repos — org's GitHub-hosted minute budget is exhausted. The ci.yml already uses self-hosted (Mac mini). Align the auto-promote workflow to use the same runner. workflow_dispatch manual runs at 15:06, 15:08, 15:10, 15:22, 15:23 all failed with the same 2s timeout pattern. --- .github/workflows/auto-promote-staging.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/auto-promote-staging.yml b/.github/workflows/auto-promote-staging.yml index 646e861..749b29d 100644 --- a/.github/workflows/auto-promote-staging.yml +++ b/.github/workflows/auto-promote-staging.yml @@ -31,7 +31,9 @@ permissions: jobs: promote: - runs-on: ubuntu-latest + # self-hosted Mac mini — org's GitHub-hosted minute budget is exhausted + # for private repos; same runner used by ci.yml + runs-on: self-hosted steps: - uses: actions/checkout@v4 with: