Skip to content

Instantly share code, notes, and snippets.

@topherbullock
Created April 4, 2017 14:58
Show Gist options
  • Save topherbullock/70e095675e28c0e0957914c38dd9f4fc to your computer and use it in GitHub Desktop.
Save topherbullock/70e095675e28c0e0957914c38dd9f4fc to your computer and use it in GitHub Desktop.
Concourse ❤️ YML ⚓
hello-task-params: &hello
config:
platform: linux
image_resource:
type: docker-image
source: {repository: ubuntu}
run:
path: echo
args: ["Hello!"]
jobs:
- name: hello-world
plan:
- task: say-hello
<<: *hello
- name: hello
plan:
- task: say-hello-again
<<: *hello
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment