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.
Hi,
We are creating Bamboo Plan using Java specs code. Im trying to make branch setting of plan to trigger branch plan manually. Im using following line of code to achieve this.
PlanBranchManagement planBranchManagement = new PlanBranchManagement();
planBranchManagement.createForVcsBranch();
planBranchManagement.delete(new BranchCleanup()
.whenRemovedFromRepositoryAfterDays(1));
planBranchManagement.createManually();
planBranchManagement.triggerBuildsManually();
planBranchManagement.issueLinkingEnabled(false);
plan.planBranchManagement(planBranchManagement);
But when I check plan created by bamboo specs, it does not reflect inside branch settings of the Default plan configuration. Instead its show "Same as defined in parent plan" for the Branch triggers setting of the Plan.
Not sure if Im making any mistake or its a bamboo bug. Im testing it against Bamboo specs version 8.0.4
Regards,
DK.