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,
Maybe this is a stupidic question.. Is there a way I can do kind of a bulk update across a task that is used across multiple Bamboo plans?
I am not sure it is possible from the application, if not, can someone advise how this can be achieved from backend?
Thank you for the suggestions.
Janaki.
Hi Janaki,
Bamboo does not have a feature to bulk edit a given task across plans.
To do this you will need to work on the Bamboo database. The data you want to change is stored XML_DEFINITION_DATA column from BUILD_DEFINITION table.
This query will show you the data I'm talking about:
SELECT B.FULL_KEY,
B.BUILD_TYPE,
BD.XML_DEFINITION_DATA
FROM BUILD_DEFINITION AS BD
JOIN BUILD AS B ON B.BUILD_ID = BD.BUILD_ID
WHERE B.BUILD_TYPE='JOB'
ORDER BY B.FULL_KEY
This data is stored in XML format and any change on it should be carefully performed. We don't want a malformed xml data blocking your plan configuration to be loaded.
This is what I would try:
I hope that can help you.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.