Created
April 4, 2017 14:58
-
-
Save topherbullock/70e095675e28c0e0957914c38dd9f4fc to your computer and use it in GitHub Desktop.
Concourse ❤️ YML ⚓
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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