summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorUnknwon <u@gogs.io>2016-02-26 14:21:31 -0500
committerUnknwon <u@gogs.io>2016-02-26 14:21:31 -0500
commit7a91d7e776581a2d1cac9239445e89e8b56c9177 (patch)
tree6efe75f3f5f64ffe2ef104f02befe8f885510c93
parent6465adfe5c101ce5396b375236da2dc923903886 (diff)
parent51f15880d1f25f9d40d93762c5dcb52c2dccac14 (diff)
downloadgitea-7a91d7e776581a2d1cac9239445e89e8b56c9177.tar.gz
gitea-7a91d7e776581a2d1cac9239445e89e8b56c9177.zip
Merge pull request #2694 from mhartkorn/pullrefs
Improved Pull Request refs
-rw-r--r--routers/repo/pull.go19
1 files changed, 13 insertions, 6 deletions
diff --git a/routers/repo/pull.go b/routers/repo/pull.go
index cf8c4829b4..58acb1758d 100644
--- a/routers/repo/pull.go
+++ b/routers/repo/pull.go
@@ -623,7 +623,7 @@ func CompareAndPullRequestPost(ctx *middleware.Context, form auth.CreateIssueFor
return
}
- pull := &models.Issue{
+ pullIssue := &models.Issue{
RepoID: repo.ID,
Index: repo.NextIssueIndex(),
Name: form.Title,
@@ -634,26 +634,33 @@ func CompareAndPullRequestPost(ctx *middleware.Context, form auth.CreateIssueFor
IsPull: true,
Content: form.Content,
}
- if err := models.NewPullRequest(repo, pull, labelIDs, attachments, &models.PullRequest{
+ pullRequest := &models.PullRequest{
HeadRepoID: headRepo.ID,
BaseRepoID: repo.ID,
HeadUserName: headUser.Name,
HeadBranch: headBranch,
BaseBranch: baseBranch,
+ HeadRepo: headRepo,
+ BaseRepo: repo,
MergeBase: prInfo.MergeBase,
Type: models.PULL_REQUEST_GOGS,
- }, patch); err != nil {
+ }
+ if err := models.NewPullRequest(repo, pullIssue, labelIDs, attachments, pullRequest, patch); err != nil {
ctx.Handle(500, "NewPullRequest", err)
return
}
+ if err := pullRequest.PushToBaseRepo(); err != nil {
+ ctx.Handle(500, "PushToBaseRepo", err)
+ return
+ }
- notifyWatchersAndMentions(ctx, pull)
+ notifyWatchersAndMentions(ctx, pullIssue)
if ctx.Written() {
return
}
- log.Trace("Pull request created: %d/%d", repo.ID, pull.ID)
- ctx.Redirect(ctx.Repo.RepoLink + "/pulls/" + com.ToStr(pull.Index))
+ log.Trace("Pull request created: %d/%d", repo.ID, pullIssue.ID)
+ ctx.Redirect(ctx.Repo.RepoLink + "/pulls/" + com.ToStr(pullIssue.Index))
}
func TriggerTask(ctx *middleware.Context) {