Skip to content

Commit

Permalink
Merge pull request #228 from sd2k/patch-1
Browse files Browse the repository at this point in the history
Make `merge_commit_sha` nullable in GitHub server
  • Loading branch information
jspahrsummers authored Dec 5, 2024
2 parents e5ace36 + f10a89b commit eb7db5b
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 @@ -304,7 +304,7 @@ export const GitHubPullRequestSchema = z.object({
updated_at: z.string(),
closed_at: z.string().nullable(),
merged_at: z.string().nullable(),
merge_commit_sha: z.string(),
merge_commit_sha: z.string().nullable(),
assignee: GitHubIssueAssigneeSchema.nullable(),
assignees: z.array(GitHubIssueAssigneeSchema),
head: GitHubPullRequestHeadSchema,
Expand Down

0 comments on commit eb7db5b

Please sign in to comment.