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.
Hello @Joao Moyses Moura Alves ,
Thank you for reaching out to Atlassian Community!
If you want all the steps of your branch pipelines to be fully manual, my suggestion would be that you create them as custom pipelines, instead of branches. With custom pipelines, you can manually trigger them from the Pipelines page, and select from which branch you want them to run against. You can even give each custom pipelines the same name of the branch they are supposed to run, so it makes it easier from you to pick the correct pipeline for the correct branch when manually triggering it, as the example below :
custom: # Pipelines that can only be triggered manually
master:
- step:
script:
- echo "This is a custom pipeline"
development:
- step:
script:
- echo "This is a custom pipeline"
However, if what you want is to define just a set of steps to be manual, you can make use of the trigger: manual option in the steps that you want to be manually run :
branches:
master:
- step:
name: 'First step'
script:
- echo "This step runs automatically"
- step:
name: 'Second step'
trigger: 'manual'
script:
- echo "This step needs to be manually triggered"
Please note that the first step of a pipeline cannot be configured as manual. You have the option to create a dummy step in your first step as a workaround, but for full manual pipelines, the recommendation would be to use the custom trigger as mentioned above.
More details on pipeline triggers are in the documentation below :
Hope that helps! Let me know if you have any questions.
Thank you, Joao!
Kind regards,
Patrik S
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.