From 92f87ea4bc6281b6d536661d10910bcc17d6cb48 Mon Sep 17 00:00:00 2001 From: stefanodvx <69367859+stefanodvx@users.noreply.github.com> Date: Thu, 17 Apr 2025 14:34:03 +0200 Subject: [PATCH] send telegram message on push --- .github/workflows/notify.yml | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 .github/workflows/notify.yml diff --git a/.github/workflows/notify.yml b/.github/workflows/notify.yml new file mode 100644 index 0000000..2da2a39 --- /dev/null +++ b/.github/workflows/notify.yml @@ -0,0 +1,12 @@ +name: telegram message +on: [push] + +jobs: + notify: + runs-on: ubuntu-latest + steps: + - name: send telegram message on push + uses: appleboy/telegram-action@master + with: + to: ${{ secrets.TELEGRAM_TO }} + token: ${{ secrets.TELEGRAM_TOKEN }} \ No newline at end of file