24 lines
430 B
YAML
24 lines
430 B
YAML
---
|
|
kind: pipeline
|
|
type: docker
|
|
name: default
|
|
steps:
|
|
- name: Echo Foo
|
|
image: hello-world
|
|
- name: Nur für citest_publish branch
|
|
image: alpine
|
|
commands:
|
|
- ls
|
|
when:
|
|
ref:
|
|
- refs/heads/citest_publish
|
|
- name: Nur für citest_publish branch bei pull_request
|
|
image: alpine
|
|
commands:
|
|
- ls
|
|
when:
|
|
ref:
|
|
- refs/heads/citest_publish
|
|
event:
|
|
- pull_request
|