Create blank.yml

This commit is contained in:
тейлс 2024-02-27 16:33:35 +04:00 committed by GitHub
parent a5b5f5708c
commit e39ee13a7c
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

19
.github/workflows/blank.yml vendored Normal file
View file

@ -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}}