1
0
mirror of synced 2026-01-05 12:07:35 -05:00

repo sync

This commit is contained in:
Octomerger Bot
2021-03-22 11:39:51 +10:00
committed by GitHub
7 changed files with 302 additions and 31 deletions

View File

@@ -97,7 +97,7 @@ We do not intentionally collect User Personal Information that is **stored in yo
### How GitHub uses your information
- We may use your information for the following purposes:
We may use your information for the following purposes:
- We use your [Registration Information](#registration-information) to create your account, and to provide you the Service.
- We use your [Payment Information](#payment-information) to provide you with the Paid Account service, the Marketplace service, the Sponsors Program, or any other GitHub paid service you request.
- We use your User Personal Information, specifically your username, to identify you on GitHub.

View File

@@ -2075,7 +2075,7 @@ enum CheckConclusionState {
"""
A check run.
"""
type CheckRun implements Node & UniformResourceLocatable {
type CheckRun implements Node & RequirableByPullRequest & UniformResourceLocatable {
"""
The check run's annotations
"""
@@ -2133,13 +2133,18 @@ type CheckRun implements Node & UniformResourceLocatable {
id: ID!
"""
Whether this check run is required to pass before merging.
Whether this is required to pass before merging for a specific pull request.
"""
isRequired(
"""
The pull request this check is required for
The id of the pull request this is required for
"""
pullRequestId: ID!
pullRequestId: ID
"""
The number of the pull request this is required for
"""
pullRequestNumber: Int
): Boolean!
"""
@@ -22303,6 +22308,16 @@ type PullRequest implements Assignable & Closable & Comment & Labelable & Lockab
"""
viewerDidAuthor: Boolean!
"""
The latest review given from the viewer.
"""
viewerLatestReview: PullRequestReview
"""
The person who has requested the viewer for review on this pull request.
"""
viewerLatestReviewRequest: ReviewRequest
"""
The merge body text for the viewer and method.
"""
@@ -30363,6 +30378,26 @@ Types that can be requested reviewers.
"""
union RequestedReviewer = Mannequin | Team | User
"""
Represents a type that can be required by a pull request for merging.
"""
interface RequirableByPullRequest {
"""
Whether this is required to pass before merging for a specific pull request.
"""
isRequired(
"""
The id of the pull request this is required for
"""
pullRequestId: ID
"""
The number of the pull request this is required for
"""
pullRequestNumber: Int
): Boolean!
}
"""
Autogenerated input type of RerequestCheckSuite
"""
@@ -31852,7 +31887,7 @@ type StatusCheckRollupContextEdge {
"""
Represents an individual commit status context
"""
type StatusContext implements Node {
type StatusContext implements Node & RequirableByPullRequest {
"""
The avatar of the OAuth application or the user that created the status
"""
@@ -31890,13 +31925,18 @@ type StatusContext implements Node {
id: ID!
"""
Whether this status is required to pass before merging.
Whether this is required to pass before merging for a specific pull request.
"""
isRequired(
"""
The pull request this status is required for
The id of the pull request this is required for
"""
pullRequestId: ID!
pullRequestId: ID
"""
The number of the pull request this is required for
"""
pullRequestNumber: Int
): Boolean!
"""

View File

@@ -2165,7 +2165,7 @@ enum CheckConclusionState {
"""
A check run.
"""
type CheckRun implements Node & UniformResourceLocatable {
type CheckRun implements Node & RequirableByPullRequest & UniformResourceLocatable {
"""
The check run's annotations
"""
@@ -2223,13 +2223,18 @@ type CheckRun implements Node & UniformResourceLocatable {
id: ID!
"""
Whether this check run is required to pass before merging.
Whether this is required to pass before merging for a specific pull request.
"""
isRequired(
"""
The pull request this check is required for
The id of the pull request this is required for
"""
pullRequestId: ID!
pullRequestId: ID
"""
The number of the pull request this is required for
"""
pullRequestNumber: Int
): Boolean!
"""
@@ -24057,6 +24062,16 @@ type PullRequest implements Assignable & Closable & Comment & Labelable & Lockab
"""
viewerDidAuthor: Boolean!
"""
The latest review given from the viewer.
"""
viewerLatestReview: PullRequestReview
"""
The person who has requested the viewer for review on this pull request.
"""
viewerLatestReviewRequest: ReviewRequest
"""
The merge body text for the viewer and method.
"""
@@ -32622,6 +32637,26 @@ Types that can be requested reviewers.
"""
union RequestedReviewer = Mannequin | Team | User
"""
Represents a type that can be required by a pull request for merging.
"""
interface RequirableByPullRequest {
"""
Whether this is required to pass before merging for a specific pull request.
"""
isRequired(
"""
The id of the pull request this is required for
"""
pullRequestId: ID
"""
The number of the pull request this is required for
"""
pullRequestNumber: Int
): Boolean!
}
"""
Autogenerated input type of RerequestCheckSuite
"""
@@ -34785,7 +34820,7 @@ type StatusCheckRollupContextEdge {
"""
Represents an individual commit status context
"""
type StatusContext implements Node {
type StatusContext implements Node & RequirableByPullRequest {
"""
The avatar of the OAuth application or the user that created the status
"""
@@ -34823,13 +34858,18 @@ type StatusContext implements Node {
id: ID!
"""
Whether this status is required to pass before merging.
Whether this is required to pass before merging for a specific pull request.
"""
isRequired(
"""
The pull request this status is required for
The id of the pull request this is required for
"""
pullRequestId: ID!
pullRequestId: ID
"""
The number of the pull request this is required for
"""
pullRequestNumber: Int
): Boolean!
"""

View File

@@ -1,4 +1,25 @@
[
{
"schemaChanges": [
{
"title": "The GraphQL schema includes these changes:",
"changes": [
"Type `RequirableByPullRequest` was added",
"Field `viewerLatestReview` was added to object type `PullRequest`",
"Field `viewerLatestReviewRequest` was added to object type `PullRequest`",
"`CheckRun` object implements `RequirableByPullRequest` interface",
"Type for argument `pullRequestId` on field `CheckRun.isRequired` changed from `ID!` to `ID`",
"Argument `pullRequestNumber: Int` added to field `CheckRun.isRequired`",
"`StatusContext` object implements `RequirableByPullRequest` interface",
"Type for argument `pullRequestId` on field `StatusContext.isRequired` changed from `ID!` to `ID`",
"Argument `pullRequestNumber: Int` added to field `StatusContext.isRequired`"
]
}
],
"previewChanges": [],
"upcomingChanges": [],
"date": "2021-03-21"
},
{
"schemaChanges": [
{

File diff suppressed because one or more lines are too long

View File

@@ -8235,6 +8235,11 @@
"id": "node",
"href": "/graphql/reference/interfaces#node"
},
{
"name": "RequirableByPullRequest",
"id": "requirablebypullrequest",
"href": "/graphql/reference/interfaces#requirablebypullrequest"
},
{
"name": "UniformResourceLocatable",
"id": "uniformresourcelocatable",
@@ -8342,7 +8347,7 @@
},
{
"name": "isRequired",
"description": "<p>Whether this check run is required to pass before merging.</p>",
"description": "<p>Whether this is required to pass before merging for a specific pull request.</p>",
"type": "Boolean!",
"id": "boolean",
"kind": "scalars",
@@ -8350,13 +8355,23 @@
"arguments": [
{
"name": "pullRequestId",
"description": "<p>The pull request this check is required for.</p>",
"description": "<p>The id of the pull request this is required for.</p>",
"type": {
"name": "ID!",
"name": "ID",
"id": "id",
"kind": "scalars",
"href": "/graphql/reference/scalars#id"
}
},
{
"name": "pullRequestNumber",
"description": "<p>The number of the pull request this is required for.</p>",
"type": {
"name": "Int",
"id": "int",
"kind": "scalars",
"href": "/graphql/reference/scalars#int"
}
}
]
},
@@ -35509,6 +35524,22 @@
"kind": "scalars",
"href": "/graphql/reference/scalars#boolean"
},
{
"name": "viewerLatestReview",
"description": "<p>The latest review given from the viewer.</p>",
"type": "PullRequestReview",
"id": "pullrequestreview",
"kind": "objects",
"href": "/graphql/reference/objects#pullrequestreview"
},
{
"name": "viewerLatestReviewRequest",
"description": "<p>The person who has requested the viewer for review on this pull request.</p>",
"type": "ReviewRequest",
"id": "reviewrequest",
"kind": "objects",
"href": "/graphql/reference/objects#reviewrequest"
},
{
"name": "viewerMergeBodyText",
"description": "<p>The merge body text for the viewer and method.</p>",
@@ -48969,6 +49000,11 @@
"name": "Node",
"id": "node",
"href": "/graphql/reference/interfaces#node"
},
{
"name": "RequirableByPullRequest",
"id": "requirablebypullrequest",
"href": "/graphql/reference/interfaces#requirablebypullrequest"
}
],
"fields": [
@@ -49035,7 +49071,7 @@
},
{
"name": "isRequired",
"description": "<p>Whether this status is required to pass before merging.</p>",
"description": "<p>Whether this is required to pass before merging for a specific pull request.</p>",
"type": "Boolean!",
"id": "boolean",
"kind": "scalars",
@@ -49043,13 +49079,23 @@
"arguments": [
{
"name": "pullRequestId",
"description": "<p>The pull request this status is required for.</p>",
"description": "<p>The id of the pull request this is required for.</p>",
"type": {
"name": "ID!",
"name": "ID",
"id": "id",
"kind": "scalars",
"href": "/graphql/reference/scalars#id"
}
},
{
"name": "pullRequestNumber",
"description": "<p>The number of the pull request this is required for.</p>",
"type": {
"name": "Int",
"id": "int",
"kind": "scalars",
"href": "/graphql/reference/scalars#int"
}
}
]
},
@@ -58123,6 +58169,45 @@
}
]
},
{
"name": "RequirableByPullRequest",
"kind": "interfaces",
"id": "requirablebypullrequest",
"href": "/graphql/reference/interfaces#requirablebypullrequest",
"description": "<p>Represents a type that can be required by a pull request for merging.</p>",
"fields": [
{
"name": "isRequired",
"description": "<p>Whether this is required to pass before merging for a specific pull request.</p>",
"type": "Boolean!",
"id": "boolean",
"kind": "scalars",
"href": "/graphql/reference/scalars#boolean",
"arguments": [
{
"name": "pullRequestId",
"description": "<p>The id of the pull request this is required for.</p>",
"type": {
"name": "ID",
"id": "id",
"kind": "scalars",
"href": "/graphql/reference/scalars#id"
}
},
{
"name": "pullRequestNumber",
"description": "<p>The number of the pull request this is required for.</p>",
"type": {
"name": "Int",
"id": "int",
"kind": "scalars",
"href": "/graphql/reference/scalars#int"
}
}
]
}
]
},
{
"name": "Sponsorable",
"kind": "interfaces",

View File

@@ -7422,6 +7422,11 @@
"id": "node",
"href": "/graphql/reference/interfaces#node"
},
{
"name": "RequirableByPullRequest",
"id": "requirablebypullrequest",
"href": "/graphql/reference/interfaces#requirablebypullrequest"
},
{
"name": "UniformResourceLocatable",
"id": "uniformresourcelocatable",
@@ -7529,7 +7534,7 @@
},
{
"name": "isRequired",
"description": "<p>Whether this check run is required to pass before merging.</p>",
"description": "<p>Whether this is required to pass before merging for a specific pull request.</p>",
"type": "Boolean!",
"id": "boolean",
"kind": "scalars",
@@ -7537,13 +7542,23 @@
"arguments": [
{
"name": "pullRequestId",
"description": "<p>The pull request this check is required for.</p>",
"description": "<p>The id of the pull request this is required for.</p>",
"type": {
"name": "ID!",
"name": "ID",
"id": "id",
"kind": "scalars",
"href": "/graphql/reference/scalars#id"
}
},
{
"name": "pullRequestNumber",
"description": "<p>The number of the pull request this is required for.</p>",
"type": {
"name": "Int",
"id": "int",
"kind": "scalars",
"href": "/graphql/reference/scalars#int"
}
}
]
},
@@ -32607,6 +32622,22 @@
"kind": "scalars",
"href": "/graphql/reference/scalars#boolean"
},
{
"name": "viewerLatestReview",
"description": "<p>The latest review given from the viewer.</p>",
"type": "PullRequestReview",
"id": "pullrequestreview",
"kind": "objects",
"href": "/graphql/reference/objects#pullrequestreview"
},
{
"name": "viewerLatestReviewRequest",
"description": "<p>The person who has requested the viewer for review on this pull request.</p>",
"type": "ReviewRequest",
"id": "reviewrequest",
"kind": "objects",
"href": "/graphql/reference/objects#reviewrequest"
},
{
"name": "viewerMergeBodyText",
"description": "<p>The merge body text for the viewer and method.</p>",
@@ -45331,6 +45362,11 @@
"name": "Node",
"id": "node",
"href": "/graphql/reference/interfaces#node"
},
{
"name": "RequirableByPullRequest",
"id": "requirablebypullrequest",
"href": "/graphql/reference/interfaces#requirablebypullrequest"
}
],
"fields": [
@@ -45397,7 +45433,7 @@
},
{
"name": "isRequired",
"description": "<p>Whether this status is required to pass before merging.</p>",
"description": "<p>Whether this is required to pass before merging for a specific pull request.</p>",
"type": "Boolean!",
"id": "boolean",
"kind": "scalars",
@@ -45405,13 +45441,23 @@
"arguments": [
{
"name": "pullRequestId",
"description": "<p>The pull request this status is required for.</p>",
"description": "<p>The id of the pull request this is required for.</p>",
"type": {
"name": "ID!",
"name": "ID",
"id": "id",
"kind": "scalars",
"href": "/graphql/reference/scalars#id"
}
},
{
"name": "pullRequestNumber",
"description": "<p>The number of the pull request this is required for.</p>",
"type": {
"name": "Int",
"id": "int",
"kind": "scalars",
"href": "/graphql/reference/scalars#int"
}
}
]
},
@@ -54231,6 +54277,45 @@
}
]
},
{
"name": "RequirableByPullRequest",
"kind": "interfaces",
"id": "requirablebypullrequest",
"href": "/graphql/reference/interfaces#requirablebypullrequest",
"description": "<p>Represents a type that can be required by a pull request for merging.</p>",
"fields": [
{
"name": "isRequired",
"description": "<p>Whether this is required to pass before merging for a specific pull request.</p>",
"type": "Boolean!",
"id": "boolean",
"kind": "scalars",
"href": "/graphql/reference/scalars#boolean",
"arguments": [
{
"name": "pullRequestId",
"description": "<p>The id of the pull request this is required for.</p>",
"type": {
"name": "ID",
"id": "id",
"kind": "scalars",
"href": "/graphql/reference/scalars#id"
}
},
{
"name": "pullRequestNumber",
"description": "<p>The number of the pull request this is required for.</p>",
"type": {
"name": "Int",
"id": "int",
"kind": "scalars",
"href": "/graphql/reference/scalars#int"
}
}
]
}
]
},
{
"name": "Sponsorable",
"kind": "interfaces",