Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion schema/workflow.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -118,6 +118,7 @@ properties:
title: Do
description: Defines the task(s) the workflow must perform.
timeout:
title: DoTimeout
oneOf:
- $ref: '#/$defs/timeout'
title: TimeoutDefinition
Expand Down Expand Up @@ -185,6 +186,7 @@ $defs:
title: TaskBaseExport
description: Export task output to context.
timeout:
title: TaskTimeout
oneOf:
- $ref: '#/$defs/timeout'
title: TaskTimeoutDefinition
Expand Down Expand Up @@ -551,6 +553,7 @@ $defs:
unevaluatedProperties: false
properties:
error:
title: RaiseTaskError
oneOf:
- $ref: '#/$defs/error'
title: RaiseErrorDefinition
Expand Down Expand Up @@ -815,7 +818,8 @@ $defs:
title: FlowDirective
description: Represents different transition options for a workflow.
anyOf:
- type: string
- title: FlowDirectiveEnum
type: string
enum: [ continue, exit, end ]
default: continue
- type: string
Expand Down
Loading