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.
Hi,
I has the two repositorys, both with pipelines enable.
How to execute the pipeline after the other pipeline complete?
Hi @Afonso Rodrigues ,
Hope you're doing well. :)
There're multiple ways that you can trigger a build on a different repository, and creating a new commit and push to the repo using the build is one of the workaround.
Another ways that you can try is by using pre-built integration - "Bitbucket trigger pipeline" Pipe:
script:
- pipe: atlassian/trigger-pipeline:4.1.3
variables:
BITBUCKET_USERNAME: '<string>'
BITBUCKET_APP_PASSWORD: '<string>'
REPOSITORY: '<string>'
# ACCOUNT: '<string>' # Optional
# BRANCH_NAME: '<string>' # Optional
# CUSTOM_PIPELINE_NAME: '<string>' # Optional
# PIPELINE_VARIABLES: '<json>' # Optional
# WAIT: '<boolean>' # Optional
# WAIT_MAX_TIMEOUT: '<string>' # Optional
# DEBUG: '<boolean>' # Optional
Trigger Pipelines - Bitbucket Integration (Pipes)
If you want a more manual way to trigger, you can try using API as well:
/2.0/repositories/{workspace}/{repo_slug}/pipelines/ - Atlassian Developer
Hope this information helps.
Cheers,
Ronald
Just confirming that this works, but we found out (after a lot of trial and error) that the user executing the pipeline must have WRITE permissions on the repo where the pipeline must be invoked (even though his app password permissions were set to "WRITE" for repos and pipelines).
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi, what came to my mind first...
maybe try to git push at the end of the first pipeline (or run script with git commands) witch trigger a pipeline in second repo?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi urban,
This solution create a new commit in another repository.
To bitbucket not provide the integration between two pipelines?
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.