Skip to content
This repository has been archived by the owner on Apr 21, 2022. It is now read-only.

Latest commit

 

History

History
44 lines (37 loc) · 926 Bytes

approval.rst

File metadata and controls

44 lines (37 loc) · 926 Bytes

Approval

The Approval phase type configures a pipeline phase to require manual approval before proceeding with the rest of the pipeline.

Parameters

Parameter Type Required Default Description
type string Yes approval This must always be approval for the Approval phase type.
name string Yes   The value you want to show up in the CodePipeline UI as your phase name.

Secrets

This phase type doesn't prompt for any secrets when creating the pipeline.

Example Phase Configuration

This snippet of a rockefeller.yml file shows the GitHub phase being configured:

version: 1

pipelines:
  dev:
    ...
    phases:
    - type: approval
      name: ManualApproval
    ...