Skip to content

Commit badd2d2

Browse files
committed
- Removed obsolete files
- Updated the dsl-reference and schema to add the `await` property to the run task Signed-off-by: Charles d'Avernas <[email protected]>
1 parent 7539516 commit badd2d2

File tree

5 files changed

+8
-62
lines changed

5 files changed

+8
-62
lines changed

.markdownlint.yaml

Lines changed: 0 additions & 23 deletions
This file was deleted.

.typo-ci.yml

Lines changed: 0 additions & 34 deletions
This file was deleted.

Makefile

Lines changed: 0 additions & 5 deletions
This file was deleted.

dsl-reference.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -717,6 +717,7 @@ Provides the capability to execute external [containers](#container-process), [s
717717
| run.script | [`script`](#script-process) | `no` | The definition of the script to run.<br>*Required if `container`, `shell` and `workflow` have not been set.* |
718718
| run.shell | [`shell`](#shell-process) | `no` | The definition of the shell command to run.<br>*Required if `container`, `script` and `workflow` have not been set.* |
719719
| run.workflow | [`workflow`](#workflow-process) | `no` | The definition of the workflow to run.<br>*Required if `container`, `script` and `shell` have not been set.* |
720+
| await | `boolean` | `no` | Determines whether or not the process to run should be awaited for.<br>*Defaults to `true`.* |
720721

721722
##### Examples
722723

schema/workflow.yaml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -537,6 +537,13 @@ $defs:
537537
type: object
538538
title: RunTaskConfiguration
539539
description: The configuration of the process to execute.
540+
unevaluatedProperties: false
541+
properties:
542+
await:
543+
type: boolean
544+
default: true
545+
title: AwaitProcessCompletion
546+
description: Whether to await the process completion before continuing.
540547
oneOf:
541548
- title: RunContainer
542549
description: Enables the execution of external processes encapsulated within a containerized environment.

0 commit comments

Comments
 (0)