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 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.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.