Files
2022-04-25 06:11:24 +00:00

24 lines
290 B
YAML

kind: pipeline
type: docker
name: en
steps:
- name: greeting
image: alpine
commands:
- echo hello world
trigger:
event:
- push
---
kind: pipeline
type: docker
name: fr
steps:
- name: greeting
image: alpine
commands:
- echo bonjour monde
trigger:
event:
- pull_request