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
@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.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
@DPKJ what If bamboo plan has multiple repo's , If I want to configure a branch plan that has multiple branches.
will this works?
${bamboo.relVer}-*.${bamboo.buildNumber}
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.