From 763b28e5917c464c3a1fda5eefb2541ae92afabf Mon Sep 17 00:00:00 2001 From: Brian Love Date: Thu, 21 May 2026 10:56:56 -0700 Subject: [PATCH] fix(ci): minting-deploy health check uses correct domain mint.threadplane.ai The Vercel project threadplane-minting-service has the domain mint.threadplane.ai assigned (not minting.threadplane.ai which was assumed when PR #510 landed). Updates the post-deploy health check URL to match. Also the domain customers see for Stripe webhooks. Co-Authored-By: Claude Opus 4.7 (1M context) --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 289a05de6..126f15264 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -636,7 +636,7 @@ jobs: npx vercel deploy --prebuilt --prod --yes --token=${{ secrets.VERCEL_TOKEN }} - name: Verify minting service health env: - MINTING_URL: https://minting.threadplane.ai + MINTING_URL: https://mint.threadplane.ai run: | for i in 1 2 3 4 5; do if curl -sf -o /dev/null "$MINTING_URL/api/health"; then