From c7786d1068c83f2b42603662e915208c8b13e0d5 Mon Sep 17 00:00:00 2001 From: Michael Date: Fri, 29 May 2026 13:47:47 -0700 Subject: [PATCH] chore(ci): pause mobile-shell-typecheck (manual-only) while Phase 12 mobile on hold MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The mobile shell doesn't currently compile (Phase 12 paused), so cargo-check was failing on every push to main + every mobile/workflow PR — wasted CI and red-X noise. Reduced to workflow_dispatch only; push/pull_request triggers commented out for easy re-enable when mobile resumes. Co-Authored-By: Claude Opus 4.8 (1M context) --- .github/workflows/mobile-shell-typecheck.yml | 24 ++++++++++++-------- 1 file changed, 15 insertions(+), 9 deletions(-) diff --git a/.github/workflows/mobile-shell-typecheck.yml b/.github/workflows/mobile-shell-typecheck.yml index 45e91f2..76a8dbc 100644 --- a/.github/workflows/mobile-shell-typecheck.yml +++ b/.github/workflows/mobile-shell-typecheck.yml @@ -1,15 +1,21 @@ name: mobile-shell-typecheck +# PAUSED 2026-05-29: Phase 12 (mobile Tauri) is on hold and the mobile shell +# does not currently compile, so this cargo-check was failing on every push to +# main and every mobile/workflow-touching PR — pure wasted CI. Reduced to +# manual-only (workflow_dispatch). RE-ENABLE the push/pull_request triggers +# below when mobile work resumes (see docs/phase-12-pause-state.md). on: - push: - branches: [main] - paths: - - "mobile/tauri/**" - - ".github/workflows/mobile-shell-typecheck.yml" - pull_request: - paths: - - "mobile/tauri/**" - - ".github/workflows/mobile-shell-typecheck.yml" + workflow_dispatch: + # push: + # branches: [main] + # paths: + # - "mobile/tauri/**" + # - ".github/workflows/mobile-shell-typecheck.yml" + # pull_request: + # paths: + # - "mobile/tauri/**" + # - ".github/workflows/mobile-shell-typecheck.yml" concurrency: group: ${{ github.workflow }}-${{ github.ref }}