diff --git a/lib/modules/platform/bitbucket/index.ts b/lib/modules/platform/bitbucket/index.ts index ff3e2ca323bd9e..1f52707e65bc85 100644 --- a/lib/modules/platform/bitbucket/index.ts +++ b/lib/modules/platform/bitbucket/index.ts @@ -279,7 +279,12 @@ export async function getPrList(): Promise { if (renovateUserUuid && !config.ignorePrAuthor) { url += `&q=author.uuid="${renovateUserUuid}"`; } - const prs = await utils.accumulateValues(url, undefined, undefined, 50); + const prs = ( + await bitbucketHttp.getJson>(url, { + paginate: true, + pagelen: 50, + }) + ).body.values; config.prList = prs.map(utils.prInfo); logger.debug(`Retrieved Pull Requests, count: ${config.prList.length}`); }