grim/convey

37339c9211b8
Bust out a bunch of the yaml to yaml files
# This plan includes a task that extends another task with
# a different, higher precedence environment. Running this
# plan should print foo, bar, then baz.
tasks:
foo:
type: docker/run
image: gliderlabs/alpine:edge
command: echo "${MESSAGE}"
environment:
- MESSAGE=foo
bar:
type: convey/extend
task: foo
environment:
- MESSAGE=bar
baz:
type: convey/extend
task: bar
environment:
- MESSAGE=baz
plans:
default:
stages:
- tasks: [foo, bar, baz]