Files
hello-pipeline/.woodpecker/pipeline.yml

12 lines
213 B
YAML

when:
- event: push
branch: main
steps:
- name: hello
image: alpine
commands:
- echo "Pipeline triggered!"
- echo "Branch: ${CI_COMMIT_BRANCH}"
- echo "Commit: ${CI_COMMIT_SHA}"