The Atlassian Community can help you and your team get more value out of Atlassian products and practices.
hi there,
I want to use rest api 2.0 to add status to a commit by below api, but may i know how to specify {key} ?
/2.0/repositories/{workspace}/{repo_slug}/commit/{commit}/statuses/build/{key}
Hi @Jin Wu,
The API endpoint you mention in your question can be used to get or update an existing build status.
If you'd like to add a new status, you'll need to use
/2.0/repositories/{workspace}/{repo_slug}/commit/{commit}/statuses/build
There is an example also in the above doc:
curl https://api.bitbucket.org/2.0/repositories/my-workspace/my-repo/commit/e10dae226959c2194f2b07b077c07762d93821cf/statuses/build/ -X POST -u jdoe -H 'Content-Type: application/json' -d '{
"key": "MY-BUILD",
"state": "SUCCESSFUL",
"description": "42 tests passed",
"url": "https://www.example.org/my-build-result"
}'
The key can be any value you like, but I suggest that it is unique among that commit's statuses. If the specified key already exists, the existing status object will be overwritten.
If you have any questions, please feel free to let me know.
Kind regards,
Theodora
Beginning on April 4th, we will be implementing push limits. This means that your push cannot be completed if it is over 3.5 GB. If you do attempt to complete a push that is over 3.5 GB, it will fail...
Connect with like-minded Atlassian users at free events near you!
Find an eventConnect with like-minded Atlassian users at free events near you!
Unfortunately there are no Community Events near you at the moment.
Host an eventYou're one step closer to meeting fellow Atlassian users at your local event. Learn more about Community Events
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.