Reputation: 61
We have a Jenkins Job which runs automated test scripts. Now we would like to have another job triggered after successful completion of this job whose only task is to get a manual approval or rejection from QA team for manual validation of the new build. If QA rejects the job the pipeline should stop and if QA approves the next job in the pipeline should trigger. Any pointers to implement this case?
Upvotes: 2
Views: 8928
Reputation: 25451
Jenkins Workflow (mentioned in your tag, perhaps unintentionally?) is designed for this kind of thing. You can write the whole pipeline in one job with a short script.
Upvotes: 0
Reputation: 2970
Try this workflow:
Upvotes: 3