Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions internal/cmd/combine_prs.go
Original file line number Diff line number Diff line change
Expand Up @@ -253,8 +253,9 @@ func createBranch(ctx context.Context, client RESTClientInterface, repo github.R
func mergeBranch(ctx context.Context, client RESTClientInterface, repo github.Repo, base, head string) error {
endpoint := fmt.Sprintf("repos/%s/%s/merges", repo.Owner, repo.Repo)
payload := map[string]string{
"base": base,
"head": head,
"base": base,
"head": head,
"commit_message": fmt.Sprintf("Merge %s into %s [skip ci]", head, base),
}
body, err := encodePayload(payload)
if err != nil {
Expand Down
Loading