Skip to content

Commit 6209bed

Browse files
committed
Fix: Handle null description in GitHub label schema
1 parent ddffd23 commit 6209bed

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/github/common/types.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -157,7 +157,7 @@ export const GitHubLabelSchema = z.object({
157157
name: z.string(),
158158
color: z.string(),
159159
default: z.boolean(),
160-
description: z.string().optional(),
160+
description: z.string().nullable().optional(),
161161
});
162162

163163
export const GitHubMilestoneSchema = z.object({

0 commit comments

Comments
 (0)