From aba3c24ea6c57ed0b54435ffed502ee8d8beeeea Mon Sep 17 00:00:00 2001 From: Vikhyath Mondreti Date: Mon, 14 Sep 2026 18:46:23 -0700 Subject: [PATCH] fix(db): allow five hours for database migrations --- .github/workflows/migrations.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/migrations.yml b/.github/workflows/migrations.yml index a4fe361e8ca..faa2b464522 100644 --- a/.github/workflows/migrations.yml +++ b/.github/workflows/migrations.yml @@ -26,7 +26,7 @@ jobs: name: Apply Database Migrations runs-on: ${{ (vars.CI_PROVIDER == '' || vars.CI_PROVIDER == 'blacksmith') && 'blacksmith-4vcpu-ubuntu-2404' || 'ubuntu-latest' }} # Bulk projection loads and concurrent index builds can outlast ordinary schema changes. - timeout-minutes: 180 + timeout-minutes: 300 steps: - name: Checkout code