From 0b24deb96ccd2c6791f1c1e0ccdd1816bc42740e Mon Sep 17 00:00:00 2001 From: Felipe Alvarez Date: Wed, 19 Oct 2022 13:59:47 +1000 Subject: [PATCH] improve documentation show better examples of var-file yaml and json files --- docs/content/pipelines/Run Pipeline.md | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/docs/content/pipelines/Run Pipeline.md b/docs/content/pipelines/Run Pipeline.md index eec6cdc8a..b86e5af07 100644 --- a/docs/content/pipelines/Run Pipeline.md +++ b/docs/content/pipelines/Run Pipeline.md @@ -15,22 +15,22 @@ The pipeline will be triggered multiple times according to the array length. #### Variable yaml file with 2 sets of variables ```yaml -- key: value - key2: key1 -- key: value - key2: key2 +- variable1: value1 + variable2: value2 +- variable3: value3 + variable4: value4 ``` #### Variable json file with 2 sets of variables ```json [ { - "key": "value", - "key2": "key1" + "variable1": "value1", + "variable2": "value2" }, { - "key": "value", - "key2": "key2" + "variable3": "value3", + "variable4": "value4" } ] ```