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â
}
}â