From 08d027cdeb3d174737f8f84a1ba7fa691d9d2f36 Mon Sep 17 00:00:00 2001 From: Spencer Murray Date: Thu, 24 Sep 2026 16:56:29 -0400 Subject: [PATCH] Deploy production MCP after relevant merges --- .github/workflows/deploy.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 482ae7fa..263cbaa8 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -211,7 +211,7 @@ jobs: deploy-mcp-prod: needs: [build-mcp, changes] - if: ${{ github.event_name == 'workflow_dispatch' && github.ref == 'refs/heads/main' && inputs.environment == 'prod' && needs.changes.outputs.mcp == 'true' }} + if: ${{ github.ref == 'refs/heads/main' && (github.event_name == 'push' || inputs.environment == 'prod') && needs.changes.outputs.mcp == 'true' }} runs-on: ubuntu-latest steps: - name: Checkout code