I’m in the process of building a CI/CD pipeline with Circle CI, and I want to have some conditional logic at the step level. E.g. “if this is true, then don’t run this step”.
Less flexible, but also acceptable with my current requirement is to just exit out of a job before all steps are complete without failing the job itself. E.g. “if this is true, exit the job with a successful result”.
Are either of these possible with Circle CI? Thanks in advance!