grim/convey

a13a27a3ff4a
Attempt to load convey.yaml if convey.yml cound not be found
default-plan: everything
tasks:
one:
type: docker/run
image: alpine:edge
command: echo one
two:
type: docker/run
image: alpine:edge
command: echo two
plans:
plan1:
stages:
- tasks:
- one
plan2:
stages:
- tasks:
- two
meta-plans:
default:
plans:
- plan1
- plan2