1
1
Fork 1
mirror of https://github.com/go-gitea/gitea.git synced 2024-05-28 04:46:09 +02:00

Load pr Issue Poster on API too (#11033)

This commit is contained in:
6543 2020-04-10 12:40:36 +02:00 committed by GitHub
parent 743022116d
commit d21b974f6c
Signed by: GitHub
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -337,6 +337,10 @@ func rawMerge(pr *models.PullRequest, doer *models.User, mergeStyle models.Merge
return "", err
}
if err = pr.Issue.LoadPoster(); err != nil {
log.Error("LoadPoster: %v", err)
return "", fmt.Errorf("LoadPoster: %v", err)
}
sig := pr.Issue.Poster.NewGitSig()
if signArg == "" {
if err := git.NewCommand("commit", fmt.Sprintf("--author='%s <%s>'", sig.Name, sig.Email), "-m", message).RunInDirTimeoutEnvPipeline(env, -1, tmpBasePath, &outbuf, &errbuf); err != nil {