Create
cancel
Showing results for 
Search instead for 
Did you mean: 
Sign up Log in
Celebration

Earn badges and make progress

You're on your way to the next level! Join the Kudos program to earn points and save your progress.

Deleted user Avatar
Deleted user

Level 1: Seed

25 / 150 points

Next: Root

Avatar

1 badge earned

Collect

Participate in fun challenges

Challenges come and go, but your rewards stay with you. Do more to earn more!

Challenges
Coins

Gift kudos to your peers

What goes around comes around! Share the love by gifting kudos to your peers.

Recognition
Ribbon

Rise up in the ranks

Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!

Leaderboard

Bamboo Specs - java, create plan branch

Is there a way to create a plan branch with the java spec api?

I don't see any examples here:

https://docs.atlassian.com/bamboo-specs-docs/6.4.0/specs-java.html

 

And I can't find anything here:

https://docs.atlassian.com/bamboo-specs/6.4.1/?_ga=2.194413293.1722865494.1522673805-876250858.1520866475

2 answers

1 accepted

0 votes
Answer accepted
rsperafico
Atlassian Team
Atlassian Team members are employees working across the company in a wide variety of roles.
Apr 03, 2018

Hello @Tom Adamo,

Please, refer to "Manual branch management" under https://docs.atlassian.com/bamboo-specs-docs/6.4.0/specs-java.html#automatic-branch-management

Kind regards,

Rafael

This is creating separate plans for each branch, not plan branches, no?

0 votes
Minh Tran
Atlassian Team
Atlassian Team members are employees working across the company in a wide variety of roles.
Apr 05, 2018

Or you can refer "Automatic branch management" part the https://docs.atlassian.com/bamboo-specs-docs/6.4.0/specs-java.html#automatic-branch-management

Here is one example

Plan plan = new Plan(project, planName, planKey)
    .planRepositories(new GitRepository()
        .name("my-repo")
        .url("ssh://git@bitbucket.org:my-company/my-repo.git")
        .branch("master"))
    .planBranchManagement(new PlanBranchManagement()
        .createForVcsBranchMatching("^JIRA-[0-9]+")
        .triggerBuildsLikeParentPlan()); 

Feel free to ping me if you have other questions

Thanks.

I want to get them created, not configure the settings. This part (sort-of) answered my question: https://docs.atlassian.com/bamboo-specs-docs/6.4.0/specs-java.html#manual-branch-management

Minh Tran
Atlassian Team
Atlassian Team members are employees working across the company in a wide variety of roles.
Apr 05, 2018

@Tom Adamo Not really. The above code registers the plan to a specific branch pattern "^JIRA-[0-9]+", when a new branch matching that pattern is created, a branch in Bamboo is created for it. That is how it work.

Unless you want to create your branch in Bamboo manually when your branch in SCM is created everytime, then this is not what you want

I already have a repo with existing branches. So, I don't want to just configure the branch management. I want to actually create a plan branch from a script.

Your example will configure the plan to wait until a repo branch (JIRA-1) is created, then it will create the corresponding plan branch. But, I already have the repo branch (JIRA-1) created and I don't want to have to go into the UI and create the plan branch manually.

Like Wojciech Gaudnik likes this

I'm trying to figure out exactly the same, did you solved it ?

Suggest an answer

Log in or Sign up to answer
TAGS
AUG Leaders

Atlassian Community Events