Merge pull request #11843 from github/repo-sync

repo sync
This commit is contained in:
Octomerger Bot 2021-11-10 12:38:18 -05:00 коммит произвёл GitHub
Родитель 630d3069af c242bf2dab
Коммит 336e712a71
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
8 изменённых файлов: 378 добавлений и 3 удалений

Просмотреть файл

@ -17709,6 +17709,16 @@ type Mutation {
input: UpdatePullRequestInput!
): UpdatePullRequestPayload
"""
Merge HEAD from upstream branch into pull request branch
"""
updatePullRequestBranch(
"""
Parameters for UpdatePullRequestBranch
"""
input: UpdatePullRequestBranchInput!
): UpdatePullRequestBranchPayload
"""
Updates the body of a pull request review.
"""
@ -39276,6 +39286,41 @@ type UpdateProjectPayload {
project: Project
}
"""
Autogenerated input type of UpdatePullRequestBranch
"""
input UpdatePullRequestBranchInput {
"""
A unique identifier for the client performing the mutation.
"""
clientMutationId: String
"""
The head ref oid for the upstream branch.
"""
expectedHeadOid: GitObjectID
"""
The Node ID of the pull request.
"""
pullRequestId: ID! @possibleTypes(concreteTypes: ["PullRequest"])
}
"""
Autogenerated return type of UpdatePullRequestBranch
"""
type UpdatePullRequestBranchPayload {
"""
A unique identifier for the client performing the mutation.
"""
clientMutationId: String
"""
The updated pull request.
"""
pullRequest: PullRequest
}
"""
Autogenerated input type of UpdatePullRequest
"""

Просмотреть файл

@ -19291,6 +19291,16 @@ type Mutation {
input: UpdatePullRequestInput!
): UpdatePullRequestPayload
"""
Merge HEAD from upstream branch into pull request branch
"""
updatePullRequestBranch(
"""
Parameters for UpdatePullRequestBranch
"""
input: UpdatePullRequestBranchInput!
): UpdatePullRequestBranchPayload
"""
Updates the body of a pull request review.
"""
@ -44411,6 +44421,41 @@ type UpdateProjectPayload {
project: Project
}
"""
Autogenerated input type of UpdatePullRequestBranch
"""
input UpdatePullRequestBranchInput {
"""
A unique identifier for the client performing the mutation.
"""
clientMutationId: String
"""
The head ref oid for the upstream branch.
"""
expectedHeadOid: GitObjectID
"""
The Node ID of the pull request.
"""
pullRequestId: ID! @possibleTypes(concreteTypes: ["PullRequest"])
}
"""
Autogenerated return type of UpdatePullRequestBranch
"""
type UpdatePullRequestBranchPayload {
"""
A unique identifier for the client performing the mutation.
"""
clientMutationId: String
"""
The updated pull request.
"""
pullRequest: PullRequest
}
"""
Autogenerated input type of UpdatePullRequest
"""

Просмотреть файл

@ -19291,6 +19291,16 @@ type Mutation {
input: UpdatePullRequestInput!
): UpdatePullRequestPayload
"""
Merge HEAD from upstream branch into pull request branch
"""
updatePullRequestBranch(
"""
Parameters for UpdatePullRequestBranch
"""
input: UpdatePullRequestBranchInput!
): UpdatePullRequestBranchPayload
"""
Updates the body of a pull request review.
"""
@ -44411,6 +44421,41 @@ type UpdateProjectPayload {
project: Project
}
"""
Autogenerated input type of UpdatePullRequestBranch
"""
input UpdatePullRequestBranchInput {
"""
A unique identifier for the client performing the mutation.
"""
clientMutationId: String
"""
The head ref oid for the upstream branch.
"""
expectedHeadOid: GitObjectID
"""
The Node ID of the pull request.
"""
pullRequestId: ID! @possibleTypes(concreteTypes: ["PullRequest"])
}
"""
Autogenerated return type of UpdatePullRequestBranch
"""
type UpdatePullRequestBranchPayload {
"""
A unique identifier for the client performing the mutation.
"""
clientMutationId: String
"""
The updated pull request.
"""
pullRequest: PullRequest
}
"""
Autogenerated input type of UpdatePullRequest
"""

Просмотреть файл

@ -1,4 +1,19 @@
[
{
"schemaChanges": [
{
"title": "The GraphQL schema includes these changes:",
"changes": [
"Type `UpdatePullRequestBranchInput` was added",
"Type `UpdatePullRequestBranchPayload` was added",
"Field `updatePullRequestBranch` was added to object type `Mutation`"
]
}
],
"previewChanges": [],
"upcomingChanges": [],
"date": "2021-11-10"
},
{
"schemaChanges": [
{

Различия файлов скрыты, потому что одна или несколько строк слишком длинны

Просмотреть файл

@ -6593,6 +6593,40 @@
}
]
},
{
"name": "updatePullRequestBranch",
"kind": "mutations",
"id": "updatepullrequestbranch",
"href": "/graphql/reference/mutations#updatepullrequestbranch",
"description": "<p>Merge HEAD from upstream branch into pull request branch.</p>",
"inputFields": [
{
"name": "input",
"type": "UpdatePullRequestBranchInput!",
"id": "updatepullrequestbranchinput",
"kind": "input-objects",
"href": "/graphql/reference/input-objects#updatepullrequestbranchinput"
}
],
"returnFields": [
{
"name": "clientMutationId",
"type": "String",
"id": "string",
"kind": "scalars",
"href": "/graphql/reference/scalars#string",
"description": "<p>A unique identifier for the client performing the mutation.</p>"
},
{
"name": "pullRequest",
"type": "PullRequest",
"id": "pullrequest",
"kind": "objects",
"href": "/graphql/reference/objects#pullrequest",
"description": "<p>The updated pull request.</p>"
}
]
},
{
"name": "updatePullRequestReview",
"kind": "mutations",
@ -79834,6 +79868,40 @@
}
]
},
{
"name": "UpdatePullRequestBranchInput",
"kind": "inputObjects",
"id": "updatepullrequestbranchinput",
"href": "/graphql/reference/input-objects#updatepullrequestbranchinput",
"description": "<p>Autogenerated input type of UpdatePullRequestBranch.</p>",
"inputFields": [
{
"name": "clientMutationId",
"description": "<p>A unique identifier for the client performing the mutation.</p>",
"type": "String",
"id": "string",
"kind": "scalars",
"href": "/graphql/reference/scalars#string"
},
{
"name": "expectedHeadOid",
"description": "<p>The head ref oid for the upstream branch.</p>",
"type": "GitObjectID",
"id": "gitobjectid",
"kind": "scalars",
"href": "/graphql/reference/scalars#gitobjectid"
},
{
"name": "pullRequestId",
"description": "<p>The Node ID of the pull request.</p>",
"type": "ID!",
"id": "id",
"kind": "scalars",
"href": "/graphql/reference/scalars#id",
"isDeprecated": false
}
]
},
{
"name": "UpdatePullRequestInput",
"kind": "inputObjects",

Просмотреть файл

@ -5460,6 +5460,40 @@
}
]
},
{
"name": "updatePullRequestBranch",
"kind": "mutations",
"id": "updatepullrequestbranch",
"href": "/graphql/reference/mutations#updatepullrequestbranch",
"description": "<p>Merge HEAD from upstream branch into pull request branch.</p>",
"inputFields": [
{
"name": "input",
"type": "UpdatePullRequestBranchInput!",
"id": "updatepullrequestbranchinput",
"kind": "input-objects",
"href": "/graphql/reference/input-objects#updatepullrequestbranchinput"
}
],
"returnFields": [
{
"name": "clientMutationId",
"type": "String",
"id": "string",
"kind": "scalars",
"href": "/graphql/reference/scalars#string",
"description": "<p>A unique identifier for the client performing the mutation.</p>"
},
{
"name": "pullRequest",
"type": "PullRequest",
"id": "pullrequest",
"kind": "objects",
"href": "/graphql/reference/objects#pullrequest",
"description": "<p>The updated pull request.</p>"
}
]
},
{
"name": "updatePullRequestReview",
"kind": "mutations",
@ -70290,6 +70324,40 @@
}
]
},
{
"name": "UpdatePullRequestBranchInput",
"kind": "inputObjects",
"id": "updatepullrequestbranchinput",
"href": "/graphql/reference/input-objects#updatepullrequestbranchinput",
"description": "<p>Autogenerated input type of UpdatePullRequestBranch.</p>",
"inputFields": [
{
"name": "clientMutationId",
"description": "<p>A unique identifier for the client performing the mutation.</p>",
"type": "String",
"id": "string",
"kind": "scalars",
"href": "/graphql/reference/scalars#string"
},
{
"name": "expectedHeadOid",
"description": "<p>The head ref oid for the upstream branch.</p>",
"type": "GitObjectID",
"id": "gitobjectid",
"kind": "scalars",
"href": "/graphql/reference/scalars#gitobjectid"
},
{
"name": "pullRequestId",
"description": "<p>The Node ID of the pull request.</p>",
"type": "ID!",
"id": "id",
"kind": "scalars",
"href": "/graphql/reference/scalars#id",
"isDeprecated": false
}
]
},
{
"name": "UpdatePullRequestInput",
"kind": "inputObjects",

Просмотреть файл

@ -6593,6 +6593,40 @@
}
]
},
{
"name": "updatePullRequestBranch",
"kind": "mutations",
"id": "updatepullrequestbranch",
"href": "/graphql/reference/mutations#updatepullrequestbranch",
"description": "<p>Merge HEAD from upstream branch into pull request branch.</p>",
"inputFields": [
{
"name": "input",
"type": "UpdatePullRequestBranchInput!",
"id": "updatepullrequestbranchinput",
"kind": "input-objects",
"href": "/graphql/reference/input-objects#updatepullrequestbranchinput"
}
],
"returnFields": [
{
"name": "clientMutationId",
"type": "String",
"id": "string",
"kind": "scalars",
"href": "/graphql/reference/scalars#string",
"description": "<p>A unique identifier for the client performing the mutation.</p>"
},
{
"name": "pullRequest",
"type": "PullRequest",
"id": "pullrequest",
"kind": "objects",
"href": "/graphql/reference/objects#pullrequest",
"description": "<p>The updated pull request.</p>"
}
]
},
{
"name": "updatePullRequestReview",
"kind": "mutations",
@ -79834,6 +79868,40 @@
}
]
},
{
"name": "UpdatePullRequestBranchInput",
"kind": "inputObjects",
"id": "updatepullrequestbranchinput",
"href": "/graphql/reference/input-objects#updatepullrequestbranchinput",
"description": "<p>Autogenerated input type of UpdatePullRequestBranch.</p>",
"inputFields": [
{
"name": "clientMutationId",
"description": "<p>A unique identifier for the client performing the mutation.</p>",
"type": "String",
"id": "string",
"kind": "scalars",
"href": "/graphql/reference/scalars#string"
},
{
"name": "expectedHeadOid",
"description": "<p>The head ref oid for the upstream branch.</p>",
"type": "GitObjectID",
"id": "gitobjectid",
"kind": "scalars",
"href": "/graphql/reference/scalars#gitobjectid"
},
{
"name": "pullRequestId",
"description": "<p>The Node ID of the pull request.</p>",
"type": "ID!",
"id": "id",
"kind": "scalars",
"href": "/graphql/reference/scalars#id",
"isDeprecated": false
}
]
},
{
"name": "UpdatePullRequestInput",
"kind": "inputObjects",