Last updated

workflow-dependsOn

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

ArazzoCompatibility
1.0.0

Design principles

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

Configuration

OptionTypeDescription
severitystringPossible 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