From 979fbe086cd2e9aef83b44a92f23b970b8897eaf Mon Sep 17 00:00:00 2001 From: John Olheiser Date: Fri, 27 Nov 2020 14:00:52 -0600 Subject: [PATCH] Increment skip to avoid infini-loop (#13703) Signed-off-by: jolheiser Co-authored-by: Lauris BH --- services/pull/pull.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/services/pull/pull.go b/services/pull/pull.go index 0bfcd8a63b..9cf4abfd54 100644 --- a/services/pull/pull.go +++ b/services/pull/pull.go @@ -610,7 +610,7 @@ func GetCommitMessages(pr *models.PullRequest) string { } element = element.Next() } - + skip += limit } }