From c882e905a1c005f2b68105ba1b0df32606899f86 Mon Sep 17 00:00:00 2001 From: Ivan Pedrazas Date: Tue, 14 Mar 2017 06:00:28 +0000 Subject: [PATCH] wait option flag added in docs --- README.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/README.md b/README.md index 72f6e5a..3700b5b 100644 --- a/README.md +++ b/README.md @@ -17,6 +17,7 @@ pipeline: values: secret.password=${SECRET_PASSWORD},image.tag=${DRONE_BRANCH}-${DRONE_COMMIT_SHA:0:7} prefix: STAGING debug: true + wait: true when: branch: [master] ``` @@ -66,6 +67,7 @@ pipeline: values: secret.password=${SECRET_PASSWORD},image.tag=${DRONE_BRANCH}-${DRONE_COMMIT_SHA:0:7} prefix: STAGING debug: true + wait: true when: branch: exclude: [ master ] @@ -79,6 +81,7 @@ pipeline_production: values: secret.password=${SECRET_PASSWORD},image.tag=${DRONE_BRANCH}-${DRONE_COMMIT_SHA:0:7} prefix: PROD debug: true + wait: true when: branch: [master] ```