Handle alternative image url for TopPairs #2609
Workflow file for this run
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: Check PR and notify | |
on: | |
pull_request: | |
jobs: | |
notify: | |
if: ${{ !startsWith(github.head_ref, 'l10n_version/') }} | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Notify to Telegram | |
uses: appleboy/telegram-action@master | |
with: | |
to: ${{secrets.TELEGRAM_TO}} | |
token: ${{secrets.TELEGRAM_TOKEN}} | |
disable_web_page_preview: true | |
message: | | |
${{ github.event.pull_request.html_url }} | |
Title : ${{github.event.pull_request.title}} | |
Author : @${{github.actor}} |