From 09af46f134b4bc8f5146e564eb1fef3a080f37a6 Mon Sep 17 00:00:00 2001 From: aliculPix4D Date: Mon, 4 Mar 2024 14:42:04 +0100 Subject: [PATCH] test pipeline --- pipeline.yml | 39 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 39 insertions(+) create mode 100644 pipeline.yml diff --git a/pipeline.yml b/pipeline.yml new file mode 100644 index 0000000..4e1f209 --- /dev/null +++ b/pipeline.yml @@ -0,0 +1,39 @@ +resource_types: +- name: cogito + type: registry-image + source: + repository: pix4d/cogito + tag: latest + +resources: +- name: gh-status + type: cogito + check_every: never + source: + log_level: debug + owner: pix4d + repo: cogito + access_token: ((github_repo_status_token)) + +- name: repo.git + type: git + source: + uri: https://github.com/pix4d/cogito.git + branch: ((branch)) + +jobs: + - name: autocat + plan: + - get: repo.git + trigger: true + - put: gh-status + inputs: [repo.git] + params: {state: success} + - task: will-fail + config: + platform: linux + image_resource: + type: registry-image + source: { repository: alpine } + run: + path: /bin/false