Hi Hub=-For-=Dev
Yes, Azure DevOps can report build status to Bitbucket Cloud, similar to how it does for GitHub and other repositories.
To stop Azure DevOps from sending build status updates to Bitbucket Cloud, please follow the below steps:
- Open your azure-pipelines.yml file.
- Add the
reportBuildStatus: false
setting to disable build status reporting:
pool:
vmImage: 'ubuntu-latest'
steps:
- checkout: self
persistCredentials: false
reportBuildStatus: false
- You can also use
statusPolicy: false
that disables status reporting.
- Go to Azure DevOps -> Project Settings -> Service Connections. If Bitbucket is connected, try removing the connection.
Hope this helps!
Please Let me know if you have any queries.