diff --git a/lib/platform/bitbucket/index.js b/lib/platform/bitbucket/index.js index 1a70b78720d14673ef130ad338619cee4835de7f..17949cd52d584d5bb9a261c0064fd9e01f3ff647 100644 --- a/lib/platform/bitbucket/index.js +++ b/lib/platform/bitbucket/index.js @@ -662,16 +662,13 @@ async function getCommitMessages() { // Pull Request -async function getPrList(state = utils.prStates.open) { +async function getPrList() { logger.debug('getPrList()'); if (!config.prList) { logger.debug('Retrieving PR list'); - const prs = await utils.accumulateValues( - `/2.0/repositories/${config.repository}/pullrequests?state=${state}`, - undefined, - undefined, - 50 - ); + let url = `/2.0/repositories/${config.repository}/pullrequests?`; + url += utils.prStates.all.map(state => 'state=' + state).join('&'); + const prs = await utils.accumulateValues(url, undefined, undefined, 50); config.prList = prs.map(utils.prInfo); logger.info({ length: config.prList.length }, 'Retrieved Pull Requests'); } diff --git a/test/platform/bitbucket/__snapshots__/index.spec.js.snap b/test/platform/bitbucket/__snapshots__/index.spec.js.snap index 272e2cf67e4398e9b9cf8db3ef178ca1893ab614..3118dc8b8fcd172dcacc9329cd2596f2a0d07b19 100644 --- a/test/platform/bitbucket/__snapshots__/index.spec.js.snap +++ b/test/platform/bitbucket/__snapshots__/index.spec.js.snap @@ -59,7 +59,7 @@ Array [ "/2.0/repositories/some/empty", ], Array [ - "/2.0/repositories/some/empty/pullrequests?state=OPEN&pagelen=50", + "/2.0/repositories/some/empty/pullrequests?state=OPEN&state=MERGED&state=DECLINED&state=SUPERSEDED&pagelen=50", undefined, ], Array [