Create
cancel
Showing results for 
Search instead for 
Did you mean: 
Sign up Log in
Celebration

Earn badges and make progress

You're on your way to the next level! Join the Kudos program to earn points and save your progress.

Deleted user Avatar
Deleted user

Level 1: Seed

25 / 150 points

Next: Root

Avatar

1 badge earned

Collect

Participate in fun challenges

Challenges come and go, but your rewards stay with you. Do more to earn more!

Challenges
Coins

Gift kudos to your peers

What goes around comes around! Share the love by gifting kudos to your peers.

Recognition
Ribbon

Rise up in the ranks

Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!

Leaderboard

Come for the products,
stay for the community

The Atlassian Community can help you and your team get more value out of Atlassian products and practices.

Atlassian Community about banner
4,553,397
Community Members
 
Community Events
184
Community Groups

how can i skip step according to conditions

definitions:

steps-

step- #1

step- #2 

wanna to skip step 2 according to condition 

2 answers

as theres no out of the box solution from atlassian, what i did was something like:

- step:
     script:
- |
if something exists; then
        echo true > condition.txt
fi
     artifacts:
- condition.txt
- step:
script:
- |
if $(cat condition.txt); then
exit 0
fi
- do stuff
i know this is bullshit as it still has to go through `build setup` on each step which check for this condition, which takes time... but its still better than nothing
0 votes
Philip Hodder
Atlassian Team
Atlassian Team members are employees working across the company in a wide variety of roles.
Jan 16, 2020

Hello,

Right now there isn't an option in the YAML to skip steps.

You could try marking the step as 'manual' if it's always going to be the last step, and just require it to be manually triggered.

Or you'll need to add your conditions to the start of the step. You can then just use 'exit 0' to finish the step early with a "successful" status and continue on with the pipeline.

You can also open a feature request for this here: https://jira.atlassian.com/secure/CreateIssue!default.jspa

Thanks,

Phil

I am also facing the same issue. I have raised a suggestion.

https://jira.atlassian.com/browse/BCLOUD-20833.

Like Mateusz Przybyłek likes this

Suggest an answer

Log in or Sign up to answer
TAGS
AUG Leaders

Atlassian Community Events