From ee8015865800bdf6a124917a1103b977b8e2a350 Mon Sep 17 00:00:00 2001 From: Temrjan Date: Thu, 28 May 2026 09:35:47 +0500 Subject: [PATCH 1/2] chore: remove dependabot version updates config --- .github/dependabot.yml | 18 ------------------ 1 file changed, 18 deletions(-) delete mode 100644 .github/dependabot.yml diff --git a/.github/dependabot.yml b/.github/dependabot.yml deleted file mode 100644 index 4e134d7..0000000 --- a/.github/dependabot.yml +++ /dev/null @@ -1,18 +0,0 @@ -version: 2 -updates: - - package-ecosystem: "npm" - directory: "/" - schedule: - interval: "weekly" - day: "monday" - open-pull-requests-limit: 10 - groups: - npm-minor: - patterns: ["*"] - update-types: ["minor", "patch"] - - - package-ecosystem: "github-actions" - directory: "/" - schedule: - interval: "weekly" - day: "monday" From d35b783d556d7cf7404ea0e922c837359d88ffbf Mon Sep 17 00:00:00 2001 From: Temrjan Date: Thu, 18 Jun 2026 21:07:40 +0500 Subject: [PATCH 2/2] ci(mobile): run CI on demand only until the rebuild MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Mobile is a frozen scaffold (placeholder app, no android/ dir), so the push/pull_request CI never went green — it only produced red runs plus dependabot churn. Switch the trigger to workflow_dispatch so nothing runs automatically until the rebuild restores the real triggers. Pairs with removing the dependabot version-updates config on this branch; GitHub security alerts are unaffected (separate setting). --- .github/workflows/ci.yml | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 8fdec0d..c822800 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -1,10 +1,11 @@ name: Mobile CI on: - pull_request: - branches: [main] - push: - branches: [main] + # Mobile is a frozen scaffold pending a full rebuild. Auto-CI on every + # push/PR only produced red runs (no android/ dir for build-android, a + # placeholder app with nothing to test) plus dependabot churn. Run on demand + # only; restore the push/pull_request triggers when the rebuild lands. + workflow_dispatch: concurrency: group: ${{ github.workflow }}-${{ github.ref }}