Skip to content

Commit

Permalink
GitHub: Mon Aug 7 15:04:12 UTC 2023
Browse files Browse the repository at this point in the history
  • Loading branch information
Automated committed Aug 7, 2023
1 parent 487f59a commit cbcc691
Showing 1 changed file with 16 additions and 1 deletion.
17 changes: 16 additions & 1 deletion github/github.graphql
Original file line number Diff line number Diff line change
Expand Up @@ -22359,6 +22359,17 @@ type PullRequest implements Node & Assignable & Closable & Comment & Updatable &
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."""
type PullRequestChangedFile {
"""The number of additions to the file."""
Expand Down Expand Up @@ -32353,7 +32364,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 @@ -36236,6 +36248,9 @@ input UpdatePullRequestBranchInput {
"""The head ref oid for the upstream branch."""
expectedHeadOid: GitObjectID

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

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

0 comments on commit cbcc691

Please sign in to comment.