Skip to content

Commit

Permalink
feat: optional statusCheckRollup for PullRequest (#928)
Browse files Browse the repository at this point in the history
* WIP: schema.graphql changed - please review

* build: schema.json and schema.d.ts updated

---------

Co-authored-by: Octokit Bot <[email protected]>
  • Loading branch information
octokitbot and Octokit Bot authored Apr 11, 2024
1 parent ba13bad commit 4b82cf2
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 0 deletions.
2 changes: 2 additions & 0 deletions schema.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17589,6 +17589,8 @@ export type PullRequest = Assignable & Closable & Comment & Labelable & Lockable
reviews?: Maybe<PullRequestReviewConnection>;
/** Identifies the state of the pull request. */
state: PullRequestState;
/** Check and Status rollup information for the PR's head ref. */
statusCheckRollup?: Maybe<StatusCheckRollup>;
/** A list of reviewer suggestions based on commit history and past review comments. */
suggestedReviewers: Array<Maybe<SuggestedReviewer>>;
/**
Expand Down
5 changes: 5 additions & 0 deletions schema.graphql
Original file line number Diff line number Diff line change
Expand Up @@ -34953,6 +34953,11 @@ type PullRequest implements Assignable & Closable & Comment & Labelable & Lockab
"""
state: PullRequestState!

"""
Check and Status rollup information for the PR's head ref.
"""
statusCheckRollup: StatusCheckRollup

"""
A list of reviewer suggestions based on commit history and past review comments.
"""
Expand Down
12 changes: 12 additions & 0 deletions schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -90947,6 +90947,18 @@
"isDeprecated": false,
"deprecationReason": null
},
{
"name": "statusCheckRollup",
"description": "Check and Status rollup information for the PR's head ref.",
"args": [],
"type": {
"kind": "OBJECT",
"name": "StatusCheckRollup",
"ofType": null
},
"isDeprecated": false,
"deprecationReason": null
},
{
"name": "suggestedReviewers",
"description": "A list of reviewer suggestions based on commit history and past review comments.",
Expand Down

0 comments on commit 4b82cf2

Please sign in to comment.