Issue -
I have a job in stage 1 and one in stage 2
stage 2 is followed by stage 1 in stage ordering
stage 1 job is marked as “manual”
stage 2 job “needs” stage 1 job to complete
when the pipeline runs, i see stage 1 job can be started manually (there’s a gear icon)
however stage 2 job is skipped.
even after completion of stage 1 job, stage 2 job remains skipped, and can never be started.
Question - is it a limitation, bug or my expectations are not right
Thanks for reply.
Setting allow_failure to false, will block the pipeline. Since these manual jobs are supposed to be optional, pipeline should show as passed. Here’s how my pipeline looks . pre-build is auto stage with one job, followed by build stage (all jobs manual), followed by deploy (which have needs relation with each of the build stage). setting allow_failure to deploy jobs won’t make difference anyway, and as i mentioned earlier, setting it to false for build jobs, will block pipeline. can we do anything about it ?