Skip to content

Commit 515fb57

Browse files
authored
Merge pull request #305 from 0xRaduan/fix-gh-issue-schema
fix(github): Allow body to be nullable in GithubIssueSchema
2 parents c1012d7 + 8cc8c6e commit 515fb57

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)