grim/convey

Bump the version for release
v0.14.0-alpha3
2018-02-20, Gary Kramlich
166a6d1979fa
Bump the version for release
# This plan extends another plan by overwriting the pre and post
# stages of a plan defined in the parent config. This shows how
# to build "abstract" plans which can be extended in ways that
# allow blocks of plans to be replaced.
#
# It should output
#
# <= before
# YO one
# YO two
# => after
extends: base.yml
options:
default-plan: plan3
tasks:
before:
type: docker/run
image: gliderlabs/alpine:edge
command: echo "<= before"
after:
type: docker/run
image: gliderlabs/alpine:edge
command: echo "=> after"
plans:
default:
merge: true
stages:
- name: pre
tasks:
- before
- name: post
tasks:
- after