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.
@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.
@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.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.