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
I am looking for an API call that can return branch name that is associated with specific BuildNumber#
Example
I understand that - Builder is not independent from branches but I think there is alternate way to associate branchName with buildplan
Example
Default PlanName -- Maps to a branch that is mentioned repository plugin
PlanName#2 -- Maps to branchName (can be any feature branch) -- > this plan is auto generated when you turn on branch builds for your plan
So bottom Line, I am interested to find out how can i get the default BranchName that is associated with Default Build Plan - (that can be Master Or Develop or somethingelse)
Hope I am clear with this additional information
try the /rest/api/latest/result.json?expand=results.result.plan.branches.branch.latestResult endpoint.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Danyal,
that returns a result object with list of branches - but it doesn't return specific branch name that build result was/is associated
I am interested with branchName that is associated for a BuildNumber
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Not exactly an API call... but for the record, try this (in Linux shell):
wget -q -O - https://bamboo.YOURDOMAIN/browse/YOUR-BUILD-123 | grep plan-branch-name
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.