Enum GitHub::PullRequestMergeMethod

Represents available types of methods to use when merging a pull request.

Enum Values

MERGE

Add all commits from the head branch to the base branch with a merge commit.

SQUASH

Combine all commits from the head branch into a single commit in the base branch.

REBASE

Add all commits from the head branch onto the base branch individually.

Uses

Repository.viewerDefaultMergeMethod

MergePullRequestInput.mergeMethod