Browse Source

fixes wrong after field in webhook payload (#1746)

tags/v1.2.0-rc1
Kim "BKC" Carlbäcker GitHub 8 years ago
parent
commit
d25143667e
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      models/pull.go

+ 1
- 1
models/pull.go View File

@@ -328,7 +328,7 @@ func (pr *PullRequest) Merge(doer *User, baseGitRepo *git.Repository) (err error
return fmt.Errorf("git push: %s", stderr) return fmt.Errorf("git push: %s", stderr)
} }


pr.MergedCommitID, err = headGitRepo.GetBranchCommitID(pr.HeadBranch)
pr.MergedCommitID, err = headGitRepo.GetBranchCommitID(pr.BaseBranch)
if err != nil { if err != nil {
return fmt.Errorf("GetBranchCommit: %v", err) return fmt.Errorf("GetBranchCommit: %v", err)
} }


Loading…
Cancel
Save