Files
test/.drone.yml
moweishan dd2ccbc52f
Some checks failed
continuous-integration/drone/push Build encountered an error
upd .drone.yml
2025-12-31 01:30:32 +00:00

28 lines
710 B
YAML

kind: pipeline
type: docker
name: main-automated-pipeline
trigger:
event:
- push
- promote
- manual
steps:
- name: print-auto-run
image: alpine:latest
when:
event: push
branch: main
commands:
- echo ===================================
- echo 这是自动运行的流水线
- echo 自动运行
- echo commit : {{ .input.message }}
- echo 仓库名称 : {{ .input.source_repo }}
- echo 提交人用户名 : {{ .input.author_login }}
- echo 提交人姓名 : {{ .input.author_name }}
- echo 触发人姓名 : {{ .input.sender }}
- echo 仓库名称 : {{ .repo.name }}
- echo ===================================