I created a pipeline that provisions resources when a pull request is created, and every time a commit is pushed to the branch:
pipelines:
pull-requests:
'**':
- step:
script:
- ./deploy.sh ${BITBUCKET_PR_ID}
Is there a similar trigger/event available to run a pipeline when the PR is merged? I want to be able to run a `destroy.sh` script when the pull request is merged to clean up the resources that I created.