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.