Skip to content

Commit

Permalink
Action ran graphql script"update-files"
Browse files Browse the repository at this point in the history
  • Loading branch information
rachmari authored Nov 10, 2021
1 parent 6ec2063 commit 0f38401
Show file tree
Hide file tree
Showing 8 changed files with 378 additions and 3 deletions.
45 changes: 45 additions & 0 deletions data/graphql/ghae/schema.docs-ghae.graphql
Original file line number Diff line number Diff line change
Expand Up @@ -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.
"""
Expand Down Expand Up @@ -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
"""
Expand Down
45 changes: 45 additions & 0 deletions data/graphql/ghec/schema.docs.graphql
Original file line number Diff line number Diff line change
Expand Up @@ -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.
"""
Expand Down Expand Up @@ -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
"""
Expand Down
45 changes: 45 additions & 0 deletions data/graphql/schema.docs.graphql
Original file line number Diff line number Diff line change
Expand Up @@ -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.
"""
Expand Down Expand Up @@ -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
"""
Expand Down
15 changes: 15 additions & 0 deletions lib/graphql/static/changelog.json
Original file line number Diff line number Diff line change
@@ -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": [
{
Expand Down
27 changes: 24 additions & 3 deletions lib/graphql/static/prerendered-input-objects.json

Large diffs are not rendered by default.

68 changes: 68 additions & 0 deletions lib/graphql/static/schema-dotcom.json
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down Expand Up @@ -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",
Expand Down
68 changes: 68 additions & 0 deletions lib/graphql/static/schema-ghae.json
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down Expand Up @@ -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",
Expand Down
Loading

0 comments on commit 0f38401

Please sign in to comment.