From 20ac1da6e492c23875bdfaf16ef19f89a0c5b5e8 Mon Sep 17 00:00:00 2001 From: Moh Dzulfikri Maulana <106526316+Dzuuul@users.noreply.github.com> Date: Tue, 10 Mar 2026 10:04:08 +0700 Subject: [PATCH] ci: add Telegram notification step to CI pipeline --- .woodpecker.yml | 22 +++++++++++++++++++++- 1 file changed, 21 insertions(+), 1 deletion(-) diff --git a/.woodpecker.yml b/.woodpecker.yml index 127fcfa..3ced54d 100644 --- a/.woodpecker.yml +++ b/.woodpecker.yml @@ -37,4 +37,24 @@ steps: - docker image prune -f when: branch: master - event: push \ No newline at end of file + event: push + + # 3.Telegram Notification + notify-telegram: + image: appleboy/drone-telegram + settings: + token: + from_secret: 8686730921:AAEtcvEAGFcJTobcoiy_FqAvq4mqCTZzOdM + to: + from_secret: -1003898365147 + thread_id: 8 + format: html + message: > + Deployment Success! + Project: {{ repo.name }} + Commit: {{ commit.message }} + Author: {{ commit.author }} + Status: ✅ Finished + when: + branch: master + status: [ success, failure ] \ No newline at end of file