You're on your way to the next level! Join the Kudos program to earn points and save your progress.
Level 1: Seed
25 / 150 points
Next: Root
1 badge earned
Challenges come and go, but your rewards stay with you. Do more to earn more!
What goes around comes around! Share the love by gifting kudos to your peers.
Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!
Join now to unlock these features and more
The Atlassian Community can help you and your team get more value out of Atlassian products and practices.
I want a pipeline to trigger automatically when Pull Request is CLOSED/Merged.
@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
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.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
@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
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
@O Devops hi. If i correctly understood you, when pull request declined, then no merge happened, so no pipeline triggered.
Regards, Igor
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.