mirror of
https://github.com/thegeeklab/drone-yaml.git
synced 2024-11-04 18:50:39 +00:00
24 lines
274 B
Plaintext
24 lines
274 B
Plaintext
---
|
|
kind: pipeline
|
|
name: default
|
|
|
|
platform:
|
|
os: linux
|
|
arch: amd64
|
|
|
|
steps:
|
|
- name: greeting
|
|
pull: if-not-exists
|
|
image: alpine
|
|
commands:
|
|
- echo hello
|
|
|
|
trigger:
|
|
ref:
|
|
- refs/pull/**
|
|
- refs/pull-requests/**
|
|
- refs/merge-requests/**
|
|
- refs/heads/master
|
|
|
|
...
|