We are using Bamboo 5.6.1 build 4410 and have noticed that the repository configuration using github only bring in 30 branches and do not show the branches that we are needing to build from.
Our product license is valid but we are out of maintenance. Is there some form of work around that allows us see all of our branches?
I typically dont like to go into SQL and make the change but I did find that you can alter the XML_DEFINITION_DATA in the dbo.VCS_Location table and set the branch that you need as a work around.
Stop Bamboo
Backup bamboo db
update the xml_definition_data column for the repository being used.
<github>
<username>OurUserName</username>
<password>jEncryptedPassword</password>
<repository>Github Repo</repository>
<branch>branch name</branch>
<useShallowClones>true</useShallowClones>
<useSubmodules>false</useSubmodules>
<commandTimeout>180</commandTimeout>
<verbose>
<logs>false</logs>
</verbose>
<fetch>
<whole>
<repository>false</repository>
</whole>
</fetch>
</github>
restart bamboo and check.
This has been a long standing issue that has finally been addressed in Bamboo 5.10.0:
To receive the fix, you'd need to update Bamboo accordingly, which implies that you need to renew your Bamboo license so that you are eligible for maintenance
Both aforementioned issues feature (somewhat quirky) workarounds provided by affected users, for example:
Here is a workaround: right click the select box and going to inspect element. Where it shows all the <option>branch</option> just rename one of the "branch" fields with your desired branch and hit enter. Then without refreshing the page select that option and save.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
It was fixed in 5.10.0 - https://jira.atlassian.com/browse/BAM-15686
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.