govd/.github/workflows/notify.yml
2025-04-17 14:36:40 +02:00

17 lines
No EOL
521 B
YAML

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 }}
message: |
${{ github.actor }} created commit:
Commit message: ${{ github.event.commits[0].message }}
See changes: https://github.com/${{ github.repository }}/commit/${{github.sha}}