grim/convey

6e0d26717ede
Merged in efritz/convey/add-run-user (pull request #38)

Add run user

Approved-by: Gary Kramlich
# This example creates two tasks and puts each into their own plan. Those
# plans are then grouped together into a meta-plan that is set as the default
# plan to run.
default-plan: everything
tasks:
one:
image: gliderlabs/alpine:edge
command: echo one
two:
image: gliderlabs/alpine:edge
command: echo two
plans:
plan1:
stages:
- tasks:
- one
plan2:
stages:
- tasks:
- two
meta-plans:
everything:
plans:
- plan1
- plan2