From eca1671bc38ff31f4114281a991c4daff7930bff Mon Sep 17 00:00:00 2001 From: Ivan Vasilov Date: Thu, 8 Jan 2026 18:01:32 +0200 Subject: [PATCH] fix: Fix the schema for the Vercel info in `authorizeVercelDeploys.ts` (#41797) Fix the schema for the Vercel info. --- scripts/authorizeVercelDeploys.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/scripts/authorizeVercelDeploys.ts b/scripts/authorizeVercelDeploys.ts index 8eb8de0a33..8a068193d5 100644 --- a/scripts/authorizeVercelDeploys.ts +++ b/scripts/authorizeVercelDeploys.ts @@ -25,6 +25,7 @@ const jobInfoSchema = z.object({ headInfo: z.object({ sha: z.string().min(1, 'SHA is required'), }), + id: z.string().min(1, 'ID is required'), org: z.literal('supabase'), prId: z.number().int().positive('PR ID must be a positive integer'), repo: z.literal('supabase'),