diff --git a/.github/workflows/notify-telegram.yml b/.github/workflows/notify-telegram.yml new file mode 100644 index 0000000..f860965 --- /dev/null +++ b/.github/workflows/notify-telegram.yml @@ -0,0 +1,15 @@ +name: Send notification to Telegram group +on: [push, pull_request] + +jobs: + build: + name: Send notification + runs-on: ubuntu-latest + steps: + - name: send custom message + uses: appleboy/telegram-action@master + with: + to: ${{ secrets.TELEGRAM_TO }} + token: ${{ secrets.TELEGRAM_TOKEN }} + message: | + El usuario ${{ github.actor }} ha aplicado cambios al repositorio de documentación. Más información en https://github.com/aredn/documentation_es \ No newline at end of file