From fe836f812d9918529fa7521d999ac575f8565b3a Mon Sep 17 00:00:00 2001 From: Siddharth Ganesan Date: Tue, 30 Sep 2025 10:08:57 -0700 Subject: [PATCH] Remove migrations ci --- .github/workflows/ci.yml | 15 +-------------- 1 file changed, 1 insertion(+), 14 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index b1c9e8b753..aa25a5a733 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -36,23 +36,10 @@ jobs: uses: ./.github/workflows/trigger-deploy.yml secrets: inherit - # Run database migrations (depends on build completion and trigger deployment) - migrations: - name: Apply Database Migrations - needs: [build-images, trigger-deploy] - if: | - always() && - github.event_name == 'push' && - (github.ref == 'refs/heads/main' || github.ref == 'refs/heads/staging') && - needs.build-images.result == 'success' && - needs.trigger-deploy.result == 'success' - uses: ./.github/workflows/migrations.yml - secrets: inherit - # Process docs embeddings if needed process-docs: name: Process Docs - needs: migrations + needs: [build-images, trigger-deploy] if: github.event_name == 'push' && (github.ref == 'refs/heads/main' || github.ref == 'refs/heads/staging') uses: ./.github/workflows/docs-embeddings.yml secrets: inherit