13 lines
145 B
YAML
13 lines
145 B
YAML
kind: pipeline
|
|
type: docker
|
|
name: default
|
|
|
|
steps:
|
|
- name: hello
|
|
image: busybox
|
|
commands:
|
|
- echo hello world
|
|
|
|
trigger:
|
|
branch:
|
|
- master |