I know that Bitbucket Pipelines has the ability to make a deployment manual (trigger: manual). Is there a way to send approval to another user before continuing with the deployment to production? Maybe there's a 3rd party pipe that can do this?
@Monica Gordillo Currently Bitbucket Pipelines doesn't have the capability to request approvals for deployments within the product. Bitbucket Pipelines does have integration with Jira Service Management which allows you to request approvals. https://bitbucket.org/blog/a-modern-approach-to-change-management-with-bitbucket-and-jira-service-desk
@Justin Thomas @Monica Gordillo Will this code work for auto-approval?
build: &build
step:
name: Build
script:
- echo "Starting build..."
#- <your build logic>
after-script:
- ALERT_TYPE="success"
- if [[ $BITBUCKET_EXIT_CODE -ne 0 ]]; then ALERT_TYPE="error" ; fi
- pipe: atlassian/email-notify:0.3.12
variables:
USERNAME: 'myemail@example.com'
PASSWORD: $PASSWORD
FROM: 'myemail@example.com'
TO: 'example1@example.com, example2@example.com'
HOST: 'smtp.gmail.com'
SUBJECT: '${ALERT_TYPE}:Bitbucket Pipe Notification for ${BITBUCKET_BRANCH}'
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
When you use a manual trigger (see e.g. https://bitbucket.org/blog/pipelines-manual-steps-confidence-deployment-pipeline ), you can send an email from e.g. a bash script or through a webhook.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Sounds like no option exists within Bitbucket Pipelines itself?
Unfortunately, the manual trigger cannot be the only/first step in the pipeline.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I'd love to be able to configure approvals to move on to deployment to prod stage in the pipeline.
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.