[emojis plugin] Usability - The system theme Icon, being displayed next to some emojis - is sometimes or often missing, when it's missing from the System Icons set #1798
This file contains hidden or 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 Notifications | |
| on: | |
| issue_comment: | |
| types: [created] | |
| jobs: | |
| notify: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Send notifications to Telegram | |
| run: > | |
| curl -s | |
| -X POST https://api.telegram.org/bot${{ secrets.TELEGRAM_NOTIFIER_BOT_TOKEN }}/sendMessage | |
| -d chat_id=${{ secrets.TELEGRAM_ALBERT_CHAT_ID }} | |
| -d text="${MESSAGE}" | |
| -d parse_mode=HTML | |
| -d disable_web_page_preview=true | |
| >> /dev/null | |
| env: | |
| MESSAGE: "<b>${{ github.event.comment.user.login }}</b> on <a href=\"${{ github.event.comment.html_url }}\"><b>${{ github.event.repository.name }}#${{ github.event.issue.number }}</b>: <i>${{ github.event.issue.title }}</i></a>%0A${{ github.event.comment.body }}" | |