Forums

Articles
Create
cancel
Showing results for 
Search instead for 
Did you mean: 

Branch pipeline halts on multiple merged PRs “Another pipeline is deploying to devops-test”

Ankit Solanki
I'm New Here
I'm New Here
Those new to the Atlassian Community have posted less than three times. Give them a warm welcome!
January 2, 2026

Hi Bitbucket team / Community,

I am facing an issue with my Bitbucket pipelines where branch deployments halt when multiple PRs are merged, even though concurrency groups are configured.

Here’s my scenario:

  1. I have PR pipelines that run Salesforce validation . These pipelines run per PR branch, and concurrency works perfectly — if multiple PRs trigger validation at the same time, they queue and auto-resume once previous builds finish.

  2. I also have branch pipelines for deployments (Salesforce + Vlocity) on a branch called ankit_vlocity.

    definitions:
      steps:
       

        - step: &sf-validate
            name: Validate Salesforce (Delta)
            script:
              - ./cicd-scripts/validateDeployment.sh
            concurrency-group: salesforce-validation-${BITBUCKET_BRANCH}

        - step: &sf-deploy
            name: Deploy Salesforce (Delta)
            script:
              - ./cicd-scripts/deploySalesforce.sh
            concurrency-group: salesforce-deployment

        - step: &vlocity-deploy
            name: Deploy Vlocity (Delta)
            script:
              - ./cicd-scripts/deployVlocityDelta.sh
            concurrency-group: vlocity-deployment

    pipelines:
      pull-requests:
        "**"
              - step:
                  <<: *sf-validate
                  name: Salesforce Validation
                  deployment: devops-test

      branches:
        ankit_vlocity:
          - stage:
              name: Deploy to DevOps-Test
              deployment: devops-test
              steps:
                - step:
                    <<: *sf-deploy
                    name: Salesforce Deployment
                - step:
                    <<: *vlocity-deploy
                    name: Vlocity Deployment



     

    Problem:

    • When multiple PRs are merged to ankit_vlocity, the branch pipeline triggers multiple deployments for the same branch.

    • The pipeline initially shows as waiting, then moves to Halted stage with this message:

     

    Halted This pipeline was halted because another pipeline was deploying to devops-test.
    • I tried setting a global concurrency group (e.g., concurrency-group: vlocity-deployment) instead of using ${BITBUCKET_BRANCH}, but the problem persists.

    Observations:

    • PR validation pipelines queue and auto-resume properly, likely because each PR has its own branch concurrency queue.

    • Branch deployments halt because multiple pipelines are triggered for the same target branch/org, and Bitbucket seems to queue the entire stage, which blocks the pipeline from auto-resuming.

    Questions:

    1. Why does the branch deployment halt even when a global concurrency group is used?

    2. Is there a recommended way to configure concurrency so that multiple merged PRs deploying to the same branch/org queue properly and auto-resume?

    3. Would splitting stages or changing concurrency behavior fix this issue, or is this expected Bitbucket behavior for branch pipelines?

    Any guidance or best practices would be greatly appreciated.

    Thanks in advance!

0 answers

Suggest an answer

Log in or Sign up to answer
DEPLOYMENT TYPE
CLOUD
TAGS
AUG Leaders

Atlassian Community Events