From a36a7dac35b217f6a05ce75935a3d4d0ea50ddf9 Mon Sep 17 00:00:00 2001 From: valknarness Date: Wed, 29 Oct 2025 10:48:32 +0100 Subject: [PATCH] chore: disable scheduled GitHub Actions database builds MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Database is now built on VPS via systemd timer at 02:00 UTC daily. GitHub Actions workflow kept available for manual emergency use. Benefits of VPS approach: - No 6-hour GitHub Actions timeout limit - 15,000/hour rate limit (vs 5,000 on GH Actions) - Faster indexing with incremental mode - Direct deployment to Docker container 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- .github/workflows/build-database.yml | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/.github/workflows/build-database.yml b/.github/workflows/build-database.yml index 98d5439..8579273 100644 --- a/.github/workflows/build-database.yml +++ b/.github/workflows/build-database.yml @@ -1,10 +1,11 @@ name: Build Awesome Database on: - schedule: - # Run daily at 02:00 UTC - - cron: '0 2 * * *' - workflow_dispatch: # Allow manual triggering + # Disabled: Database is now built on VPS via systemd timer + # schedule: + # # Run daily at 02:00 UTC + # - cron: '0 2 * * *' + workflow_dispatch: # Allow manual triggering (kept for emergency use) inputs: index_mode: description: 'Indexing mode'