From ada643317f03d1bacc4d5da60ca140f89ccee954 Mon Sep 17 00:00:00 2001 From: daninfpj Date: Thu, 27 Mar 2025 10:41:43 -0600 Subject: [PATCH] Allow null label descriptions --- src/github/common/types.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/github/common/types.ts b/src/github/common/types.ts index cca961ba16..1ff9c7cc41 100644 --- a/src/github/common/types.ts +++ b/src/github/common/types.ts @@ -157,7 +157,7 @@ export const GitHubLabelSchema = z.object({ name: z.string(), color: z.string(), default: z.boolean(), - description: z.string().optional(), + description: z.string().nullable().optional(), }); export const GitHubMilestoneSchema = z.object({