2022-08-29 17:30:41 +00:00
|
|
|
---
|
|
|
|
kind: pipeline
|
|
|
|
type: docker
|
|
|
|
name: default
|
|
|
|
steps:
|
|
|
|
- name: Echo Foo
|
2022-08-29 17:58:30 +00:00
|
|
|
image: hello-world
|
|
|
|
- name: Nur für citest_publish branch
|
|
|
|
image: alpine
|
|
|
|
commands:
|
|
|
|
- ls
|
|
|
|
when:
|
|
|
|
ref:
|
2022-08-29 17:59:55 +00:00
|
|
|
- refs/heads/citest_publish
|
2022-08-29 18:02:38 +00:00
|
|
|
- name: Nur für citest_publish branch bei pull_request
|
|
|
|
image: alpine
|
|
|
|
commands:
|
|
|
|
- ls
|
|
|
|
when:
|
|
|
|
ref:
|
|
|
|
- refs/heads/citest_publish
|
|
|
|
event:
|
|
|
|
- pull_request
|