Is there a way to check if a branch is not in sync with target branch in a pull request using bitbucket rest api ?
Hi @Walid Boussafa ,
I'm afraid it is not possible to do this via API.
You could check this in a local clone of the repo (after fetching all remote branches with git fetch --all) with a git command.
E.g. if the source branch of the PR is 'feature-branch' and the destination branch is 'master', you can run the command
git rev-list --left-only --count origin/master...origin/feature-branch
The output will show you how many commits behind origin/master, origin/feature-branch is.
If the output is zero the branches are in sync, otherwise an output X different than zero, means that origin/feature-branch is X commits behind origin/master.
Kind regards,
Theodora
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.