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
I'm running in a catch-22 when trying to create a gitflow-kind-of project with java specs.
I want to create a build plan through java specs with the following properties:
Main branch for build plan: master (must be master as the main branch can not use the branch updater)
Custom Plan branch: 'develop' using the branch updater to auto merge from master
Automatically created plan branches: use branch updater to auto merge from develop
The Problem:
- Bamboo requires plan branches, not git branches for the branch updater
- The branch updater config needs to point to the 'develop' plan branch for correct merging
- I can not create the develop plan branch through java specs
- I can not change the branch updater source branch when the build plan is under control of the java specs
I tried to work around this by using the plankey and adding a "0" to reference the first plan branch (as plan branch keys are the plan keys + an iterator) but this results in a catch-22 where the java specs can not create the build plan because the plan branch is missing and I can not create the plan branch because the build plan is missing. Funny enough, this works for existing projects where the first plan branch was created.
Is there any way to get this working?
I found a really strange workaround:
If I create a project manually with the same name and key as the java specs would create, manually create the develop plan branch and then run the java specs again, the existing projects gets taken over by the java specs and gets properly configured..
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.