Skip to content

Latest commit

 

History

History
48 lines (33 loc) · 1.13 KB

workflow-dependsOn.md

File metadata and controls

48 lines (33 loc) · 1.13 KB

workflow-dependsOn

Requires the items in the workflow dependsOn property to exist and to be unique.

Arazzo Compatibility
1.0.0

Design principles

To avoid ambiguity or potential clashes, the dependsOn list values should be unique.

Configuration

Option Type Description
severity string Possible values: off, warn, error. Default off.

An example configuration:

rules:
  workflow-dependsOn: error

Examples

Given the following configuration:

rules:
  workflow-dependsOn: error

Example of a correct dependsOn list:

workflows:
    - workflowId: get-museum-hours
      description: This workflow demonstrates how to get the museum opening hours and buy tickets.
      dependsOn:
        - get-museum-hours-2
        - get-museum-hours-3

Resources