Skip to content

Commit 93fd28d

Browse files
committed
updated workflow schema along with table fix
Signed-off-by: Nyamath Shaik <[email protected]>
1 parent 0b67120 commit 93fd28d

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

dsl-reference.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -961,9 +961,9 @@ A task used to set data.
961961

962962
##### Properties
963963

964-
| Name | Type | Required | Description |
965-
|:--|:---:|:---:|:---|
966-
| set | `object` | `string` | `yes` | A name/value mapping of the data to set. Can be an object or a direct runtime expression. |
964+
| Name | Type | Required | Description |
965+
|:--|:------------------:|:--------:|:---------------------------------------------------------------------|
966+
| set | `object \| string` | `yes` | Can be an object or a direct runtime expression. |
967967

968968
##### Examples
969969

schema/workflow.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -759,15 +759,15 @@ $defs:
759759
required: [ namespace, name, version ]
760760
required: [ workflow ]
761761
setTask:
762-
type: object
762+
type: object | string
763763
$ref: '#/$defs/taskBase'
764764
title: SetTask
765765
description: A task used to set data.
766766
required: [ set ]
767767
unevaluatedProperties: false
768768
properties:
769769
set:
770-
type: object
770+
type: object | string
771771
title: SetTaskConfiguration
772772
description: The data to set.
773773
minProperties: 1

0 commit comments

Comments
 (0)