Hello!
Is it possible to use the bamboo CLI to check if a given release is flagged as approved or broken? I need my script to be able to know if a given release is approved or broken, and take action only if its approved.
Thanks a lot!
Hi Nicolas,
I already sent you the endpoints on your other question but basically, your script should execute something similar to this:
curl 'http://<bamboo URL>:8085/rest/api/latest/deploy/version/{deploymentVersionId}/status' -u USER:PASSWORD -H "Accepts: application/json"
The response will be similar to this:
{
"id": 11796483,
"userName": "admin",
"displayName": "admin",
"gravatarUrl": "https://secure.gravatar.com/avatar/ca22f38ae0bdaaeb2749bd17f3323b78.jpg?r=g&s=24&d=mm",
"creationDate": 1524850496238,
"versionState": "APPROVED"
}
Thanks
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.