Skip to content

Commit 8cc8c6e

Browse files
committed
Allow body to be nullable in GithubIssueSchema
1 parent 0968e43 commit 8cc8c6e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/github/schemas.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -274,7 +274,7 @@ export const GitHubIssueSchema = z.object({
274274
created_at: z.string(),
275275
updated_at: z.string(),
276276
closed_at: z.string().nullable(),
277-
body: z.string(),
277+
body: z.string().nullable(),
278278
});
279279

280280
// Pull Request related schemas

0 commit comments

Comments
 (0)