1

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 :) Commented Dec 6, 2019 at 8:47

1 Answer 1

1

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)
Sign up to request clarification or add additional context in comments.

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.