This commit is contained in:
zaednasr 2023-11-11 00:04:21 +01:00
commit 715120dd59
No known key found for this signature in database
GPG key ID: 92B1DE23AD3D0E9E

View file

@ -12,6 +12,18 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: send telegram message on push or pull
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://github.com/${{ github.repository }}/commit/${{github.sha}}
- uses: actions/checkout@v3
- name: set up JDK 17
uses: actions/setup-java@v3