From 4bb011970525a5b27e156a928d481bb4afeb082d Mon Sep 17 00:00:00 2001 From: Brian Love Date: Fri, 1 May 2026 10:36:52 -0700 Subject: [PATCH] ci(minting-service): only deploy from main branch Vercel's git integration was triggering preview deployments on every PR push, surfacing as a failing required-style check on unrelated PRs. Whitelist main as the only branch that triggers a Vercel deployment for the cacheplane-minting-service project. PRs that don't touch this app no longer spin up doomed preview builds. Co-Authored-By: Claude Opus 4.7 --- apps/minting-service/vercel.json | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/apps/minting-service/vercel.json b/apps/minting-service/vercel.json index 4196c9d81..5c6799aab 100644 --- a/apps/minting-service/vercel.json +++ b/apps/minting-service/vercel.json @@ -1,5 +1,10 @@ { "installCommand": "cd ../.. && npm ci", "buildCommand": "cd ../.. && npx nx build minting-service", - "framework": null + "framework": null, + "git": { + "deploymentEnabled": { + "main": true + } + } }