diff --git a/.github/workflows/notify.yml b/.github/workflows/notify.yml new file mode 100644 index 0000000..2da2a39 --- /dev/null +++ b/.github/workflows/notify.yml @@ -0,0 +1,12 @@ +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 }} \ No newline at end of file