Bamboo Specs - java, create plan branch

Tom Adamo April 3, 2018

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.
April 3, 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

Eric Pederson June 30, 2019

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.
April 5, 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

Tom Adamo April 5, 2018

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.
April 5, 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

Tom Adamo April 6, 2018

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
Wojciech Gaudnik July 17, 2022

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