From e39ee13a7c04d1fef1c92d3cb2d3583fbbaeaea8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D1=82=D0=B5=D0=B9=D0=BB=D1=81?= <49571184+tailsjs@users.noreply.github.com> Date: Tue, 27 Feb 2024 16:33:35 +0400 Subject: [PATCH] Create blank.yml --- .github/workflows/blank.yml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 .github/workflows/blank.yml diff --git a/.github/workflows/blank.yml b/.github/workflows/blank.yml new file mode 100644 index 000000000..4574b8820 --- /dev/null +++ b/.github/workflows/blank.yml @@ -0,0 +1,19 @@ +name: telegram message +on: [push] +jobs: + + build: + name: Build + 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 }} + message: | + ${{ github.actor }} pushed ${{ github.event.commits[0].message }} (${{github.sha}}) to repo + + Repository: ${{ github.repository }} + + See changes: https://github.com/${{ github.repository }}/commit/${{github.sha}}