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.
Is it possible to catch a "Decline" event?
Regards.
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.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.