Skip to content

Commit

Permalink
Update workflows schema to 0.1.0-rc26
Browse files Browse the repository at this point in the history
  • Loading branch information
dls-graph-schema-federator[bot] committed Dec 3, 2024
1 parent ee1cb51 commit b4a6126
Showing 1 changed file with 3 additions and 6 deletions.
9 changes: 3 additions & 6 deletions schema/workflows.graphql
Original file line number Diff line number Diff line change
Expand Up @@ -177,7 +177,7 @@ type WorkflowEdge @shareable {
}

"""
The controller has encountered an error whilst scheduling the workflow
All tasks in the workflow have errored
"""
type WorkflowErroredStatus {
"""
Expand All @@ -196,7 +196,7 @@ type WorkflowErroredStatus {
}

"""
A task in the workflow has completed with a non-zero exit code
All tasks in the workflow have failed
"""
type WorkflowFailedStatus {
"""
Expand Down Expand Up @@ -245,7 +245,7 @@ The status of a workflow
union WorkflowStatus = WorkflowPendingStatus | WorkflowRunningStatus | WorkflowSucceededStatus | WorkflowFailedStatus | WorkflowErroredStatus

"""
All tasks in the workflow have succeeded
All tasks in the workflow have succeded
"""
type WorkflowSucceededStatus {
"""
Expand All @@ -263,9 +263,6 @@ type WorkflowSucceededStatus {
tasks: [Task!]!
}

"""
A Template which specifies how to produce a [`Workflow`]
"""
type WorkflowTemplate {
"""
The name given to the workflow template, globally unique
Expand Down

0 comments on commit b4a6126

Please sign in to comment.