1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
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" } }