Merge pull request 'Update 'demo.yml'' (#4) from shankarmounesh-patch-1 into main

Reviewed-on: #4
This commit was merged in pull request #4.
This commit is contained in:
2022-04-23 09:52:36 +00:00
+20 -4
View File
@@ -1,9 +1,25 @@
# A YAML template example.
kind: pipeline kind: pipeline
type: docker type: docker
# name: default name: en
steps: steps:
- name: demo - name: greeting
image: alpine image: alpine
commands: commands:
- apk add curl - 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