From bfaa34db012b4ad877f472e7cdf73b7be36c27de Mon Sep 17 00:00:00 2001 From: Francisco Javier Tirado Sarti Date: Thu, 7 Nov 2024 13:05:02 +0100 Subject: [PATCH] Change workflow context to task context Signed-off-by: Francisco Javier Tirado Sarti --- dsl.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dsl.md b/dsl.md index 0a3a874a..f16a283b 100644 --- a/dsl.md +++ b/dsl.md @@ -339,7 +339,7 @@ When the evaluation of an expression fails, runtimes **must** raise an error wit | Name | Type | Description | |:-----|:----:|:------------| -| context | `map` | The task's context data. | +| context | `map` | The workflow's context data. | | input | `any` | The task's transformed input. | | output | `any` | The task's transformed output. | | secrets | `map` | A key/value map of the workflow secrets.
To avoid unintentional bleeding, secrets can only be used in the `input.from` runtime expression. |