Skip to content

Adding more titles to schema #1025

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Oct 28, 2024
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