Create
cancel
Showing results for 
Search instead for 
Did you mean: 
Sign up Log in

How to trigger a pipeline on Pull Request Merge

Ronak Toshniwal December 22, 2022

I want a pipeline to trigger automatically when Pull Request is CLOSED/Merged.

1 answer

1 accepted

0 votes
Answer accepted
Igor Stoyanov
Atlassian Team
Atlassian Team members are employees working across the company in a wide variety of roles.
December 23, 2022

@Ronak Toshniwal  hi. Thanks for your question. Check this guide:

 

image: node:10.15.0

pipelines:
default:
- step:
name: Build and test
script:
- npm install
- npm test
branches:
staging:
- step:
name: Clone
script:
- echo "Clone all the things!"

 Regards, Igor

Ronak Toshniwal January 4, 2023

Hi igor
Thanks for the answer 
i want to know how to fire pipeline when PR IS MERGED 

currently it is running on PR creation.

Igor Stoyanov
Atlassian Team
Atlassian Team members are employees working across the company in a wide variety of roles.
January 4, 2023

@Ronak Toshniwal  check in example this:
https://bitbucket.org/atlassian/aws-cloudformation-deploy/pull-requests/51

Initial build when pr created was this one:
https://bitbucket.org/atlassian/aws-cloudformation-deploy/pipelines/results/334

And when pr was merged next build ran:

https://bitbucket.org/atlassian/aws-cloudformation-deploy/pipelines/results/335

And configuration is the next:

pipelines:
default: -- when pr created
- <<: *setup
- <<: *test
- <<: *release-dev
branches:
master: -- when pr merged to master
- <<: *setup
- <<: *test
- <<: *push

 Regards, Igor

Like Ronak Toshniwal likes this
Ronak Toshniwal January 4, 2023

Thanks igor

Like Igor Stoyanov likes this
O Devops January 18, 2023

Is it possible to catch a "Decline" event?

Regards.

Igor Stoyanov
Atlassian Team
Atlassian Team members are employees working across the company in a wide variety of roles.
January 19, 2023

@O Devops hi. If i correctly understood you, when pull request declined, then no merge happened, so no pipeline triggered.

Regards, Igor

Suggest an answer

Log in or Sign up to answer
DEPLOYMENT TYPE
CLOUD
PERMISSIONS LEVEL
Site Admin
TAGS
AUG Leaders

Atlassian Community Events