Skip to content

Commit

Permalink
Merge pull request #305 from 0xRaduan/fix-gh-issue-schema
Browse files Browse the repository at this point in the history
fix(github): Allow body to be nullable in GithubIssueSchema
  • Loading branch information
dsp-ant authored Dec 12, 2024
2 parents c1012d7 + 8cc8c6e commit 515fb57
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/github/schemas.ts
Original file line number Diff line number Diff line change
Expand Up @@ -274,7 +274,7 @@ export const GitHubIssueSchema = z.object({
created_at: z.string(),
updated_at: z.string(),
closed_at: z.string().nullable(),
body: z.string(),
body: z.string().nullable(),
});

// Pull Request related schemas
Expand Down

0 comments on commit 515fb57

Please sign in to comment.