You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
479 B
25 lines
479 B
---
|
|
resources:
|
|
- name: concourse-docs-git
|
|
type: git
|
|
icon: github
|
|
source:
|
|
uri: https://github.com/concourse/docs
|
|
|
|
jobs:
|
|
- name: job
|
|
public: true
|
|
plan:
|
|
- get: concourse-docs-git
|
|
trigger: true
|
|
- task: list-files
|
|
config:
|
|
inputs:
|
|
- name: concourse-docs-git
|
|
platform: linux
|
|
image_resource:
|
|
type: registry-image
|
|
source: { repository: busybox }
|
|
run:
|
|
path: ls
|
|
args: ["-la", "./concourse-docs-git"]
|