How can I setup the integration between Bitrise and Bitbucket, so we can see build status for builds triggered from a feature branch, which has a pull-request in Bitbucket?
We tried with webhook like this but it will still not show the build status in Bitbucket.
curl --request POST
–url https://api.bitrise.io/v0.1/apps/abc123/builds
–header ‘Authorization: yyy’
–header ‘Content-Type: application/json; charset=UTF-8’
–cookie ‘CSRF-TOKEN=xxx’
–data ‘{
“hook_info”: {
“type”: “bitrise”
},
“build_params”: {
“branch_dest”: “develop”,
“pull_request_id”: 123,
“workflow_id”: “develop”
}
}’