drone-yaml/yaml/converter/legacy/internal/testdata/tags.yml.golden

29 lines
331 B
Plaintext

---
kind: pipeline
name: default
platform:
os: linux
arch: amd64
steps:
- name: greeting
pull: if-not-exists
image: alpine
commands:
- echo hello
when:
event:
- tag
- push
trigger:
ref:
- refs/pull/**
- refs/pull-requests/**
- refs/merge-requests/**
- refs/heads/master
- refs/tags/**
...