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.
what is the bamboo variable for the
the branch name which is under plan configuration--> repository -->branch name
and the branch name which is getting build
when we use "${bamboo.repository.branch.name}" we get the branch name that is current being build by bamboo
how to get the name which is under plan configuration under that repository section and branch name under that..
@Sughosh R Welcome to the community.
Variable you are looking for should be like this, "${bamboo.planRepository.branchName}"
Have a look at this for more details - https://confluence.atlassian.com/bamboo/bamboo-variables-289277087.html
Both ${bamboo.repository.branch.name}" and ${bamboo.planRepository.branchName}"
give the same result
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
@Sughosh R Can you try it with position, like this you can replace 1 here to see difference.
${bamboo.planRepository.1.branchName}
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
@DPKJ All the below variables give the same value
Write-Host "repository.git.branch--> ${bamboo.repository.git.branch}"
Write-Host "planRepository.1.branchName--> ${bamboo.planRepository.1.branchName}"
Write-Host "repository.branch.name --> ${bamboo.repository.branch.name}"
Write-Host "planRepository.branchName--> ${bamboo.planRepository.branchName}"
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
@Sughosh R Need to check on that.
Have you read the documentation link that I have given?
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.