From af90c5aa2db1350e740f9927faf4d64b9081ace0 Mon Sep 17 00:00:00 2001 From: Florian Beisel Date: Mon, 15 Jan 2024 11:33:55 +0100 Subject: [PATCH] do not break out of the loop --- src/changelog.go | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/changelog.go b/src/changelog.go index ca9b796..01dcfb7 100644 --- a/src/changelog.go +++ b/src/changelog.go @@ -49,9 +49,6 @@ func GenerateChangelog(c *gitea.Client, owner string, repo string, lastRelease * } else if len(pr.Labels) == 0 { githubactions.Warningf("PR #%d doesn't have any labels", pr.ID) } - if addedToChangelog { - break - } } } }