31 lines
617 B
YAML
31 lines
617 B
YAML
---
|
|
# ----------------------------------------------
|
|
# -- Check subs
|
|
# ----------------------------------------------
|
|
kind: pipeline
|
|
type: kubernetes
|
|
name: Check subs
|
|
|
|
trigger:
|
|
event:
|
|
- cron
|
|
cron:
|
|
- daily
|
|
steps:
|
|
- name: Check subs
|
|
image: alpine:latest
|
|
commands:
|
|
- apk update
|
|
- apk add coreutils perl
|
|
- ./money/compare.pl > message_file.tpl
|
|
|
|
- name: Send telegram notification
|
|
when:
|
|
status:
|
|
- failure
|
|
image: appleboy/drone-telegram
|
|
settings:
|
|
token:
|
|
from_secret: TELEGRAM_TOKEN
|
|
to: 131601077
|
|
message_file: message_file.tpl |