1
votes

I am using Azure DevOps build pipeline and want to send the build status to bitbucket code repository. I need to check these build status before merging the feature/bugfix branch to develop branch.

Is there a clean way to integrate this in the DevOps Project?

1
Hi Tejas, any update for this issue. Please check Sajeetharan's answer helps to resolve your ssue, just a reminder :)LoLance

1 Answers

1
votes

You can do with a simple script in your pipeline and update with the build id

script: |
  import os
  id = os.getenv('BUILD_BUILDID')
  print(id)