Disabling Build Status Reporting to Bitbucket Cloud from Azure Pipeline

Hub=-For-=Dev 20 Reputation points
2025-06-10T09:21:03.9866667+00:00

Hi all,

I am currently using Azure DevOps to forward traffic to Jenkins, there's actually no logic in Azure DevOps at all. Yet, I found the build status is still sent to Bitbucket Cloud, may I know if there's any way to disable it?

I have done several hours research and I came across this article

https://learn.microsoft.com/en-us/azure/devops/pipelines/repos/pipeline-options-for-git?view=azure-devops&tabs=yaml#report-build-status-azure-pipelines-tfs-2018-and-newer

Could anyone clarify if build status reporting also occurs on Bitbucket Cloud?

Thanks.

Azure DevOps
0 comments No comments
{count} votes

Accepted answer
  1. Durga Reshma Malthi 4,430 Reputation points Microsoft External Staff Moderator
    2025-06-10T13:44:12.7+00:00

    Hi Hub=-For-=Dev

    Go to Pipelines -> Your pipeline -> Edit -> Triggers -> YAML section -> UnCheck the box for Report Build Status.User's image

    Hope this helps!

    Please Let me know if you have any queries.

    If you found the information helpful, please click "Upvote" on the post to let us know and consider accepting the answer as the token of appreciation. Thank You.


1 additional answer

Sort by: Most helpful
  1. Durga Reshma Malthi 4,430 Reputation points Microsoft External Staff Moderator
    2025-06-10T10:30:30.5566667+00:00

    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:

    1. Open your azure-pipelines.yml file.
    2. Add the reportBuildStatus: false setting to disable build status reporting:
         pool:
           vmImage: 'ubuntu-latest'
         steps:
           - checkout: self
             persistCredentials: false
             reportBuildStatus: false
      
    3. You can also use statusPolicy: false that disables status reporting.
    4. 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.


Your answer

Answers can be marked as Accepted Answers by the question author, which helps users to know the answer solved the author's problem.