Wiki

Clone wiki

bamboo-bump-build-number / Home

Bump Build Number

Bump Build Number App allows for increasing the build number of a plan. Plan Admin permission is required to perform this action

UI

To Bump Build Number go to plan configuration -> Build Number tab set new build number and click save.

Screenshot 2023-09-26 at 15.32.27.png

For your own safety, the Max number which app allows is 1073741823 (Integer.MAX_VALUE / 2)

If Plan is managed by Bamboo Specs changing build number from UI is not possible.

REST API

URL {bamboo_url}/rest/bumpBuildNumber/latest/{plan_key}

GET - returns next build number for a plan

PUT - updates next build number for a plan

Body

{
    "newBuildNumber" : "10"
}

Updated