Merge pull request #1398 from shaunjanssens/feature/bitbucket-branches-length

feat: Bitbucket branch length
This commit is contained in:
Mauricio Siu
2025-03-05 00:19:25 -06:00
committed by GitHub

View File

@@ -275,7 +275,7 @@ export const getBitbucketBranches = async (
}
const bitbucketProvider = await findBitbucketById(input.bitbucketId);
const { owner, repo } = input;
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`;
try {
const response = await fetch(url, {