aboutsummaryrefslogtreecommitdiffstats
path: root/services/pull/update.go
diff options
context:
space:
mode:
authorzeripath <art27@cantab.net>2021-12-20 00:32:54 +0000
committerGitHub <noreply@github.com>2021-12-20 08:32:54 +0800
commite4e411821d985cf8f9007d9640909ab9ee271dd7 (patch)
tree11af3c3a933949d0561f1e292acd8296181a63db /services/pull/update.go
parentb24a965b81d5aa4e7bd87c6a4c6370d7e0ec9a50 (diff)
downloadgitea-e4e411821d985cf8f9007d9640909ab9ee271dd7.tar.gz
gitea-e4e411821d985cf8f9007d9640909ab9ee271dd7.zip
Abort merge if head has been updated before pressing merge (#18032)
* Abort merge if head has been updated before pressing merge It is possible that a PR head may be pushed to between the merge page being shown and the merge button being pressed. Pass the current expected head in as a parameter and cancel the merge if it has changed. Fix #18028 Signed-off-by: Andrew Thornton <art27@cantab.net> * adjust swagger Signed-off-by: Andrew Thornton <art27@cantab.net> * fix test Signed-off-by: Andrew Thornton <art27@cantab.net> * placate lint Signed-off-by: Andrew Thornton <art27@cantab.net>
Diffstat (limited to 'services/pull/update.go')
-rw-r--r--services/pull/update.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/services/pull/update.go b/services/pull/update.go
index 25c6d36308..8ca7e4cee7 100644
--- a/services/pull/update.go
+++ b/services/pull/update.go
@@ -55,7 +55,7 @@ func Update(pull *models.PullRequest, doer *user_model.User, message string, reb
return fmt.Errorf("HeadBranch of PR %d is up to date", pull.Index)
}
- _, err = rawMerge(pr, doer, style, message)
+ _, err = rawMerge(pr, doer, style, "", message)
defer func() {
if rebase {