v1.3.523.0 #110
Workflow file for this run
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: Notify Telegram on GitHub Release | |
| on: | |
| release: | |
| types: [published] | |
| jobs: | |
| notify: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Send release info to Telegram | |
| env: | |
| TELEGRAM_TOKEN: ${{ secrets.TELEGRAM_BOT_TOKEN }} | |
| CHAT_ID: ${{ secrets.TELEGRAM_CHAT_ID }} | |
| THREAD_ID: ${{ secrets.TELEGRAM_THREAD_ID }} | |
| RELEASE_URL: ${{ github.event.release.html_url }} | |
| RELEASE_TAG: ${{ github.event.release.tag_name }} | |
| RELEASE_NAME: ${{ github.event.release.name }} | |
| RELEASE_BODY: ${{ github.event.release.body }} | |
| run: | | |
| TEXT="🚀 *New Release:* ${RELEASE_TAG} - ${RELEASE_NAME}%0A" | |
| TEXT+="📝 *Description:*%0A${RELEASE_BODY}%0A" | |
| TEXT+="🔗 [View on GitHub](${RELEASE_URL})" | |
| curl -s -X POST "https://api.telegram.org/bot${TELEGRAM_TOKEN}/sendMessage" \ | |
| -d chat_id="${CHAT_ID}" \ | |
| -d message_thread_id="${THREAD_ID}" \ | |
| -d text="${TEXT}" |