You're on your way to the next level! Join the Kudos program to earn points and save your progress.
Level 1: Seed
25 / 150 points
Next: Root
1 badge earned
Challenges come and go, but your rewards stay with you. Do more to earn more!
What goes around comes around! Share the love by gifting kudos to your peers.
Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!
Join now to unlock these features and more
The Atlassian Community can help you and your team get more value out of Atlassian products and practices.
I am wondering if there is a way to use Adaptavist Script runner for Bitbucket server to see if all commits from one branch are in another branch. For example, consider the following branches.
- master
- development
- feature/1234-abc- feature
I would like to check if the commits from feature/1234-abc feature are in development prior to the merge into master from feature/1234-abc. I know that I can find the to branch using this
mergeRequest.pullRequest.toRef.displayId == "master"
But I couldn't figure out how to compare the commits, I was trying to rework the example of merge commits detected on feature branch, but was unsuccessful.
Hi @Richard W
We have recently released the Enforce Gitflow Workflow script for scriptrunner, and I believe it should help you achieve what you need to do.
Even if you are not using the Gitflow workflow, you could have a look at the script and specifically the way it checks that a commit from one branch exists in another one.
Just to add, you do not need to compare more than one commits, you just need the latest one, as its id depends on the previous commits.
Regards,
Yannis
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.