We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents fc1d9ad + 62fae66 commit a947b49Copy full SHA for a947b49
packages/server/src/utils/providers/bitbucket.ts
@@ -275,7 +275,7 @@ export const getBitbucketBranches = async (
275
}
276
const bitbucketProvider = await findBitbucketById(input.bitbucketId);
277
const { owner, repo } = input;
278
- const url = `https://api.bitbucket.org/2.0/repositories/${owner}/${repo}/refs/branches`;
+ const url = `https://api.bitbucket.org/2.0/repositories/${owner}/${repo}/refs/branches?pagelen=100`;
279
280
try {
281
const response = await fetch(url, {
0 commit comments