grim/convey

Remove an uncessary comment
redux
2021-12-18, Gary Kramlich
d285956de25f
Remove an uncessary comment
# 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: alpine:edge
command: echo "<= before"
after:
type: docker/run
image: alpine:edge
command: echo "=> after"
plans:
default:
merge: true
stages:
- name: pre
tasks:
- before
- name: post
tasks:
- after