Merge pull request #694 from MatrixDai/bugfix/github-issue-label-null-description

Fix: Handle null description in GitHub label schema
This commit is contained in:
Ola Hungerford
2025-03-27 19:35:49 -07:00
committed by GitHub

View File

@@ -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({