Remove migrations ci (#1501)

This commit is contained in:
Siddharth Ganesan
2025-09-30 10:43:41 -07:00
committed by GitHub
parent e9150a53e3
commit e76fc8c2da

View File

@@ -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