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
I have a repository that contains the source code for a library that we use in multiple applications. I have a pipeline configured to build that library whenever a commit is made to that library. Since multiple applications, which happen to reside in different repositories, depend on this library, I would like to automatically launch a build for those repositories. How would I accomplish this?
Hello dcosta,
there is a Pipe for that: https://bitbucket.org/atlassian/trigger-pipeline/src/master/
Hope that helps, let me know you have any more questions around this,
Max
Thanks for that link. I did follow that example, however, the build fails with the following error:
✖ Validation errors:
BITBUCKET_APP_PASSWORD:
I have defined BITBUCKET_APP_PASSWORD as indicated below:
App passwords
App passwords allow two-step verification users to access their Bitbucket account through apps such as Sourcetree. We'll generate the app passwords for you, and you won't need to remember them.
Create app password
Label Created Last accessedActions
BITBUCKET_APP_PASSWORD 5 days ago Revoke
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You need to inject the app password into the pipeline and replace the placeholder with the value.
For that you can use a variable (https://confluence.atlassian.com/bitbucket/variables-in-pipelines-794502608.html) Make sure to use a secured variable.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi Max,
Thanks for your help. I eventually resolved the issue by adding both BITBUCKET_USERNAME and BITBUCKET_APP_PASSWORD as account variables to my team settings, I did make BITBUCKET_APP_PASSWORD a secured variable.
Thanks again
Dennis
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
The correct variable name for BITBUCKET_USERNAME is BITBUCKET_USER_NAME and user should've minimum of `Repository Read` and `Pipeline write` permissions.
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.