2024-12-22 00:12:09 +03:00
|
|
|
name: notify
|
|
|
|
on: [push]
|
|
|
|
jobs:
|
|
|
|
notify:
|
2024-12-22 00:38:14 +03:00
|
|
|
name: notify
|
2024-12-22 00:12:09 +03:00
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- name: send
|
2024-12-22 01:08:42 +03:00
|
|
|
uses: appleboy/telegram-action@master
|
2024-12-22 00:12:09 +03:00
|
|
|
with:
|
|
|
|
to: ${{ secrets.TELEGRAM_TO }}
|
|
|
|
token: ${{ secrets.TELEGRAM_TOKEN }}
|
|
|
|
message: |
|
2024-12-22 00:48:26 +03:00
|
|
|
New commit by ${{ github.actor }}:
|
|
|
|
Commit: ${{ github.event.commits[0].message }}
|
2024-12-22 00:12:09 +03:00
|
|
|
Repository: ${{ github.repository }}
|
2024-12-22 00:48:26 +03:00
|
|
|
Changes: https://git.unistack.org/${{ github.repository }}/commit/${{github.sha}}
|