stormchaser-dsl 1.3.0

A robust, distributed workflow engine for event-driven and human-triggered workflows.
Documentation
workflow "main" {
  description = "Main Workflow"

  step_library "common_build" {
    type = "RunContainer"
    spec {
      image = "ubuntu:latest"
    }
  }

  step "build" "common_build" {
    params = {
      tag = "v1"
    }
  }

  include "sub_flow" {
    workflow = "my_template"
  }
}