From e1b4ceccaa3f90aaf49f629fb688b88d2864baa9 Mon Sep 17 00:00:00 2001 From: Dmitriy Date: Mon, 29 Dec 2025 10:17:19 +0500 Subject: [PATCH] fix: sync "task.if" descriptor matrix with other specification Signed-off-by: Dmitriy --- dsl.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dsl.md b/dsl.md index a133f5ab..966649cf 100644 --- a/dsl.md +++ b/dsl.md @@ -448,8 +448,8 @@ The following table shows which arguments are available for each runtime express | Runtime Expression | Evaluated on | Produces | `$context` | `$input` | `$output` | `$secrets` | `$task` | `$workflow` | `$runtime` | `$authorization` | |:-------------------|:---------:|:---------:|:---------:|:---------:|:-------:|:---------:|:-------:|:----------:|:----------:|:----------:| | Workflow `input.from` | Raw workflow input | Transformed workflow input | | | | ✔ | | ✔ | ✔ | | +| Task `if` | Raw task input (i.e. transformed workflow input for the first task, transformed output from previous task otherwise) | | ✔ | | | ✔ | ✔ | ✔ | ✔ | | | Task `input.from` | Raw task input (i.e. transformed workflow input for the first task, transformed output from previous task otherwise) | Transformed task input | ✔ | | | ✔ | ✔ | ✔ | ✔ | | -| Task `if` | Transformed task input | | ✔ | ✔ | | ✔ | ✔ | ✔ | ✔ | | | Task definition | Transformed task input | | ✔ | ✔ | | ✔ | ✔ | ✔ | ✔ | ✔ | | Task `output.as` | Raw task output | Transformed task output | ✔ | ✔ | | ✔ | ✔ | ✔ | ✔ | ✔ | | Task `export.as` | Transformed task output | `$context` | ✔ | ✔ | ✔ | ✔ | ✔ | ✔ | ✔ | ✔ |