Skip to content

jobs

Jobs act as a containers for collections of steps.

jobs: [ name | notes | variables | dataflow | steps ]

Jobs can be included in the current YAML (most common format), or they can be imported from another YAML file using the dataflow property.

Examples

The following YAML snippet shows the two formats for specifying jobs:

jobs:
  - name: job_one
    steps:
      - name: step_one
  - name: job_two
    steps:
      - name: another_step
  - dataflow: "dataflowA.yml"  # jobs imported from YAML file
  - dataflow: "dataflowB.yml"

jobs properties