fix: Fix the schema for the Vercel info in authorizeVercelDeploys.ts (#41797)

Fix the schema for the Vercel info.
This commit is contained in:
Ivan Vasilov
2026-01-08 18:01:32 +02:00
committed by GitHub
parent 50d057e914
commit eca1671bc3

View File

@@ -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'),