From d50289370e89c5ce0ccb746a42244910c13571e4 Mon Sep 17 00:00:00 2001 From: Vasiliy Tolstov Date: Sun, 22 Dec 2024 00:12:09 +0300 Subject: [PATCH] test notify Signed-off-by: Vasiliy Tolstov --- .gitea/workflows/job_notify.yml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 .gitea/workflows/job_notify.yml diff --git a/.gitea/workflows/job_notify.yml b/.gitea/workflows/job_notify.yml new file mode 100644 index 0000000..292293b --- /dev/null +++ b/.gitea/workflows/job_notify.yml @@ -0,0 +1,19 @@ +name: notify +on: [push] +jobs: + notify: + name: Build + runs-on: ubuntu-latest + steps: + - name: send + uses: appleboy/telegram-action@master + with: + to: ${{ secrets.TELEGRAM_TO }} + token: ${{ secrets.TELEGRAM_TOKEN }} + message: | + ${{ github.actor }} created commit: + Commit message: ${{ github.event.commits[0].message }} + + Repository: ${{ github.repository }} + + See changes: https://git.unistack.org/${{ github.repository }}/commit/${{github.sha}} \ No newline at end of file