| 1 | name: hello-sage |
| 2 | binary: /opt/flow-green/bin/hello-sage |
| 3 | stages: |
| 4 | - name: hello-init |
| 5 | params: {phase: init, steps: 2, sleep_ms: 200} |
| 6 | outs: [hello-init] |
| 7 | - name: hello-process |
| 8 | params: {phase: process, steps: 3, sleep_ms: 200} |
| 9 | deps: [hello-init] |
| 10 | outs: [hello-result] |
| 11 | - name: hello-finalize |
| 12 | params: {phase: finalize, steps: 1, sleep_ms: 200} |
| 13 | deps: [hello-result] |
| 14 | outs: [hello-greeting] |