From 732f22ad7de0b4a5d5e6fa259c4d93dfe88ba346 Mon Sep 17 00:00:00 2001
From: M4RKUS-11111 <73301416+M4RKUS-11111@users.noreply.github.com>
Date: Tue, 27 Oct 2020 19:35:28 +0100
Subject: [PATCH] Deny wrong pull (#13308) (#13327)

* Deny wrong pull

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

Co-authored-by: Markus <git+markus@obermui.de>
Co-authored-by: zeripath <art27@cantab.net>
---
 routers/api/v1/repo/pull.go | 6 ++++++
 1 file changed, 6 insertions(+)

diff --git a/routers/api/v1/repo/pull.go b/routers/api/v1/repo/pull.go
index 8425aa612..ba5904424 100644
--- a/routers/api/v1/repo/pull.go
+++ b/routers/api/v1/repo/pull.go
@@ -201,6 +201,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