- fix bailing out if the max amount of PRs is reached

This commit is contained in:
Mike Penz
2023-08-25 07:54:34 +00:00
committed by GitHub
parent bfac64bcd3
commit ae2c6ccbb5
3 changed files with 7 additions and 5 deletions
+3 -2
View File
@@ -138,7 +138,8 @@ export class PullRequests {
}
if (mergedPRs.length >= maxPullRequests) {
core.warning(`⚠️ Reached 'maxPullRequests' count ${maxPullRequests}`)
core.warning(`⚠️ Reached 'maxPullRequests' count ${maxPullRequests} (1)`)
break // bail out early to not keep iterating forever
} else if (prs.length > 0) {
if (fetchedEnough(prs, fromDate)) {
return sortPrs(mergedPRs) // bail out early to not keep iterating on PRs super old
@@ -173,7 +174,7 @@ export class PullRequests {
const firstPR = prs[0]
if (firstPR === undefined || openPrs.length >= maxPullRequests) {
if (openPrs.length >= maxPullRequests) {
core.warning(`⚠️ Reached 'maxPullRequests' count ${maxPullRequests}`)
core.warning(`⚠️ Reached 'maxPullRequests' count ${maxPullRequests} (2)`)
}
break // bail out early to not keep iterating forever
}