Last active
April 26, 2019 02:01
-
-
Save worldofprasanna/c63fa2fe686525e3c097df4b5f0e370b to your computer and use it in GitHub Desktop.
Pipeline setup with Approval process
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ... | |
| workflows: | |
| version: 2 | |
| sample_pipeline: | |
| jobs: | |
| - linting | |
| - unit_test | |
| - build_artifact: | |
| requires: | |
| - unit_test | |
| - linting | |
| - deploy_to_dev: | |
| requires: | |
| - build_artifact | |
| - hold_for_approval: | |
| type: approval | |
| requires: | |
| - deploy_to_dev | |
| - deploy_to_qa: | |
| requires: | |
| - hold_for_approval |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment