Skip to content

Commit

Permalink
Merge pull request #27450 from github/repo-sync
Browse files Browse the repository at this point in the history
Repo sync
  • Loading branch information
docs-bot authored Aug 14, 2023
2 parents 3afb795 + df31584 commit 33ce5f9
Show file tree
Hide file tree
Showing 13 changed files with 1,763 additions and 372 deletions.
73 changes: 72 additions & 1 deletion data/graphql/ghae/schema.docs-ghae.graphql
Original file line number Diff line number Diff line change
Expand Up @@ -697,6 +697,46 @@ type AddPullRequestReviewThreadPayload {
thread: PullRequestReviewThread
}

"""
Autogenerated input type of AddPullRequestReviewThreadReply
"""
input AddPullRequestReviewThreadReplyInput {
"""
The text of the reply.
"""
body: String!

"""
A unique identifier for the client performing the mutation.
"""
clientMutationId: String

"""
The Node ID of the pending review to which the reply will belong.
"""
pullRequestReviewId: ID @possibleTypes(concreteTypes: ["PullRequestReview"])

"""
The Node ID of the thread to which this reply is being written.
"""
pullRequestReviewThreadId: ID! @possibleTypes(concreteTypes: ["PullRequestReviewThread"])
}

"""
Autogenerated return type of AddPullRequestReviewThreadReply
"""
type AddPullRequestReviewThreadReplyPayload {
"""
A unique identifier for the client performing the mutation.
"""
clientMutationId: String

"""
The newly created reply.
"""
comment: PullRequestReviewComment
}

"""
Autogenerated input type of AddReaction
"""
Expand Down Expand Up @@ -18722,6 +18762,16 @@ type Mutation {
input: AddPullRequestReviewThreadInput!
): AddPullRequestReviewThreadPayload

"""
Adds a reply to an existing Pull Request Review Thread.
"""
addPullRequestReviewThreadReply(
"""
Parameters for AddPullRequestReviewThreadReply
"""
input: AddPullRequestReviewThreadReplyInput!
): AddPullRequestReviewThreadReplyPayload

"""
Adds a reaction to a subject.
"""
Expand Down Expand Up @@ -27957,6 +28007,21 @@ type PullRequest implements Assignable & Closable & Comment & Labelable & Lockab
viewerSubscription: SubscriptionState
}

"""
The possible methods for updating a pull request's head branch with the base branch.
"""
enum PullRequestBranchUpdateMethod {
"""
Update branch via merge
"""
MERGE

"""
Update branch via rebase
"""
REBASE
}

"""
A file changed in a pull request.
"""
Expand Down Expand Up @@ -39748,7 +39813,8 @@ input StartRepositoryMigrationInput {

"""
Whether to continue the migration on error. Defaults to `false`. We strongly
recommend setting this to `true` for the smoothest migration experience.
recommend setting this to `true` for the smoothest migration experience. *This
default will change to `true` on September 4, 2023.*
"""
continueOnError: Boolean

Expand Down Expand Up @@ -45120,6 +45186,11 @@ input UpdatePullRequestBranchInput {
The Node ID of the pull request.
"""
pullRequestId: ID! @possibleTypes(concreteTypes: ["PullRequest"])

"""
The update branch method to use. If omitted, defaults to 'MERGE'
"""
updateMethod: PullRequestBranchUpdateMethod
}

"""
Expand Down
78 changes: 77 additions & 1 deletion data/graphql/ghec/schema.docs.graphql
Original file line number Diff line number Diff line change
Expand Up @@ -864,6 +864,46 @@ type AddPullRequestReviewThreadPayload {
thread: PullRequestReviewThread
}

"""
Autogenerated input type of AddPullRequestReviewThreadReply
"""
input AddPullRequestReviewThreadReplyInput {
"""
The text of the reply.
"""
body: String!

"""
A unique identifier for the client performing the mutation.
"""
clientMutationId: String

"""
The Node ID of the pending review to which the reply will belong.
"""
pullRequestReviewId: ID @possibleTypes(concreteTypes: ["PullRequestReview"])

"""
The Node ID of the thread to which this reply is being written.
"""
pullRequestReviewThreadId: ID! @possibleTypes(concreteTypes: ["PullRequestReviewThread"])
}

"""
Autogenerated return type of AddPullRequestReviewThreadReply
"""
type AddPullRequestReviewThreadReplyPayload {
"""
A unique identifier for the client performing the mutation.
"""
clientMutationId: String

"""
The newly created reply.
"""
comment: PullRequestReviewComment
}

"""
Autogenerated input type of AddReaction
"""
Expand Down Expand Up @@ -16069,6 +16109,11 @@ type GitHubMetadata {
"""
gitIpAddresses: [String!]

"""
IP addresses that GitHub Enterprise Importer uses for outbound connections
"""
githubEnterpriseImporterIpAddresses: [String!]

"""
IP addresses that service hooks are sent from
"""
Expand Down Expand Up @@ -21439,6 +21484,16 @@ type Mutation {
input: AddPullRequestReviewThreadInput!
): AddPullRequestReviewThreadPayload

"""
Adds a reply to an existing Pull Request Review Thread.
"""
addPullRequestReviewThreadReply(
"""
Parameters for AddPullRequestReviewThreadReply
"""
input: AddPullRequestReviewThreadReplyInput!
): AddPullRequestReviewThreadReplyPayload

"""
Adds a reaction to a subject.
"""
Expand Down Expand Up @@ -34934,6 +34989,21 @@ type PullRequest implements Assignable & Closable & Comment & Labelable & Lockab
viewerSubscription: SubscriptionState
}

"""
The possible methods for updating a pull request's head branch with the base branch.
"""
enum PullRequestBranchUpdateMethod {
"""
Update branch via merge
"""
MERGE

"""
Update branch via rebase
"""
REBASE
}

"""
A file changed in a pull request.
"""
Expand Down Expand Up @@ -50406,7 +50476,8 @@ input StartRepositoryMigrationInput {

"""
Whether to continue the migration on error. Defaults to `false`. We strongly
recommend setting this to `true` for the smoothest migration experience.
recommend setting this to `true` for the smoothest migration experience. *This
default will change to `true` on September 4, 2023.*
"""
continueOnError: Boolean

Expand Down Expand Up @@ -56422,6 +56493,11 @@ input UpdatePullRequestBranchInput {
The Node ID of the pull request.
"""
pullRequestId: ID! @possibleTypes(concreteTypes: ["PullRequest"])

"""
The update branch method to use. If omitted, defaults to 'MERGE'
"""
updateMethod: PullRequestBranchUpdateMethod
}

"""
Expand Down
2 changes: 1 addition & 1 deletion data/graphql/ghes-3.10/graphql_previews.enterprise.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@
- UpdateRefsInput
- UpdateRefsPayload
owning_teams:
- '@github/reponauts'
- '@github/repos'
- title: Access to a Repository's Dependency Graph
description: This preview adds support for reading a dependency graph for a repository.
toggled_by: ':hawkgirl-preview'
Expand Down
100 changes: 0 additions & 100 deletions data/graphql/ghes-3.10/graphql_upcoming_changes.public-enterprise.yml
Original file line number Diff line number Diff line change
Expand Up @@ -78,30 +78,6 @@ upcoming_changes:
date: '2022-10-01T00:00:00+00:00'
criticality: breaking
owner: jhunschejones
- location: PackageType.NPM
description: '`NPM` will be removed.'
reason:
NPM will be removed from this enum as this type will be migrated to only
be used by the Packages REST API.
date: '2022-11-21'
criticality: breaking
owner: s-anupam
- location: PackageType.NUGET
description: '`NUGET` will be removed.'
reason:
NUGET will be removed from this enum as this type will be migrated to only
be used by the Packages REST API.
date: '2022-11-21'
criticality: breaking
owner: s-anupam
- location: PackageType.RUBYGEMS
description: '`RUBYGEMS` will be removed.'
reason:
RUBYGEMS will be removed from this enum as this type will be migrated to
only be used by the Packages REST API.
date: '2022-12-28'
criticality: breaking
owner: ankitkaushal01
- location: Commit.changedFiles
description: '`changedFiles` will be removed. Use `changedFilesIfAvailable` instead.'
reason: '`changedFiles` will be removed.'
Expand All @@ -118,14 +94,6 @@ upcoming_changes:
date: '2023-01-01T00:00:00+00:00'
criticality: breaking
owner: mattruggio
- location: PackageType.MAVEN
description: '`MAVEN` will be removed.'
reason:
MAVEN will be removed from this enum as this type will be migrated to only
be used by the Packages REST API.
date: '2023-02-10'
criticality: breaking
owner: ankitkaushal01
- location: ProjectV2View.groupBy
description:
'`groupBy` will be removed. Check out the `ProjectV2View#group_by_fields`
Expand Down Expand Up @@ -164,80 +132,12 @@ upcoming_changes:
date: '2023-04-01T00:00:00+00:00'
criticality: breaking
owner: github/pull_requests
- location: RepositoryVulnerabilityAlert.fixReason
description: '`fixReason` will be removed.'
reason:
The `fixReason` field is being removed. You can still use `fixedAt` and
`dismissReason`.
date: '2023-04-01T00:00:00+00:00'
criticality: breaking
owner: jamestran201
- location: Commit.pushedDate
description: '`pushedDate` will be removed.'
reason: '`pushedDate` is no longer supported.'
date: '2023-07-01T00:00:00+00:00'
criticality: breaking
owner: darthwillis
- location: MergeQueue.headOid
description: '`headOid` will be removed. Use `entry.headOid` instead.'
reason: '`headOid` will be removed.'
date: '2023-07-01T00:00:00+00:00'
criticality: breaking
owner: github/merge_queue
- location: MergeQueue.mergeMethod
description: '`mergeMethod` will be removed. Use `configuration.merge_method` instead.'
reason: '`mergeMethod` will be removed.'
date: '2023-07-01T00:00:00+00:00'
criticality: breaking
owner: github/merge_queue
- location: MergeQueue.mergingEntries
description: '`mergingEntries` will be removed.'
reason: '`mergingEntries` will be removed.'
date: '2023-07-01T00:00:00+00:00'
criticality: breaking
owner: github/merge_queue
- location: MergeQueue.pendingRemovalEntries
description: '`pendingRemovalEntries` will be removed.'
reason: '`pendingRemovalEntries` will be removed.'
date: '2023-07-01T00:00:00+00:00'
criticality: breaking
owner: github/merge_queue
- location: MergeQueueEntry.baseOid
description: '`baseOid` will be removed. Use `baseCommit` instead.'
reason: '`baseOid` will be removed.'
date: '2023-07-01T00:00:00+00:00'
criticality: breaking
owner: github/merge_queue
- location: MergeQueueEntry.blockedByMergeConflicts
description: '`blockedByMergeConflicts` will be removed. Use `state` instead.'
reason: '`blockedByMergeConflicts` will be removed.'
date: '2023-07-01T00:00:00+00:00'
criticality: breaking
owner: github/merge_queue
- location: MergeQueueEntry.checkStatus
description: '`checkStatus` will be removed. Use `state` instead.'
reason: '`checkStatus` will be removed.'
date: '2023-07-01T00:00:00+00:00'
criticality: breaking
owner: github/merge_queue
- location: MergeQueueEntry.hasJumpedQueue
description: '`hasJumpedQueue` will be removed. Use `jump` instead.'
reason: '`hasJumpedQueue` will be removed.'
date: '2023-07-01T00:00:00+00:00'
criticality: breaking
owner: github/merge_queue
- location: MergeQueueEntry.headOid
description: '`headOid` will be removed. Use `headCommit` instead.'
reason: '`headOid` will be removed.'
date: '2023-07-01T00:00:00+00:00'
criticality: breaking
owner: github/merge_queue
- location: MergeQueueEntry.isSolo
description: '`isSolo` will be removed. Use `solo` instead.'
reason: '`isSolo` will be removed.'
date: '2023-07-01T00:00:00+00:00'
criticality: breaking
owner: github/merge_queue
- location: ProjectV2ItemFieldGroup.field
description:
'`field` will be removed. Check out the `ProjectV2ItemFieldGroup#groupByField`
Expand Down
Loading

0 comments on commit 33ce5f9

Please sign in to comment.