Fix text overflow #46
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Telegram message | |
on: | |
pull_request: | |
branches: [ "main" ] | |
jobs: | |
build: | |
name: Send Telegram message | |
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 }} | |
format: markdown | |
message: | | |
👨💻 *New PR Updates from ${{ github.actor }}* | |
🚀 *PR*: ${{ github.event.pull_request.title }} | |
https://github.com/${{ github.repository }}/pull/${{ github.event.pull_request.number }} |