Use a simple subworkflow

Implements a simple subworkflow that is defined after the main workflow definition.

Explore further

For detailed documentation that includes this code sample, see the following:

Code sample

YAML

main:
  steps:
    - first:
        call: hello
        args:
          input: "Kristof"
        result: some_output
    - second:
        return: ${some_output}

hello:
  params: [input]
  steps:
    - first:
        return: ${"Hello "+input}

What's next

To search and filter code samples for other Google Cloud products, see the Google Cloud sample browser.