Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save worldofprasanna/c63fa2fe686525e3c097df4b5f0e370b to your computer and use it in GitHub Desktop.

Select an option

Save worldofprasanna/c63fa2fe686525e3c097df4b5f0e370b to your computer and use it in GitHub Desktop.
Pipeline setup with Approval process
...
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