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:
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?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
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
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
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
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
@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
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
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.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I'm trying to figure out exactly the same, did you solved it ?
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.