Deny wrong pull (#13308) (#13326)

* Deny wrong pull (#13308)

* Deny wrong pull

* Update routers/api/v1/repo/pull.go

Co-authored-by: zeripath <[email protected]>

Co-authored-by: Markus <[email protected]>
Co-authored-by: zeripath <[email protected]>

* CI.restart()

Co-authored-by: Markus <[email protected]>
Co-authored-by: zeripath <[email protected]>
Co-authored-by: 6543 <[email protected]>
This commit is contained in:
M4RKUS-11111
2020-10-27 16:26:07 -04:00
committed by GitHub
co-authored by GitHub Markus zeripath 6543
parent 28133a801a
commit 47cb9b3de2
+6
View File
@@ -284,6 +284,12 @@ func CreatePullRequest(ctx *context.APIContext, form api.CreatePullRequestOption
// "422":
// "$ref": "#/responses/validationError"
if form.Head == form.Base {
ctx.Error(http.StatusUnprocessableEntity, "BaseHeadSame",
"Invalid PullRequest: There are no changes between the head and the base")
return
}
var (
repo = ctx.Repo.Repository
labelIDs []int64