feat(leaderboard): add user avatars to table rows with DiceBear fallback #150
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: Telegram — PR opened | |
| on: | |
| pull_request: | |
| types: [opened] | |
| jobs: | |
| notify: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Send Telegram message | |
| uses: appleboy/telegram-action@v1.0.1 | |
| with: | |
| token: ${{ secrets.TELEGRAM_BOT_TOKEN }} | |
| to: ${{ secrets.TELEGRAM_CHAT_ID }} | |
| message: | | |
| 🚀 New Pull Request created! | |
| 📦 Repository: ${{ github.repository }} | |
| 👤 Author: ${{ github.actor }} | |
| 📝 Title: ${{ github.event.pull_request.title }} | |
| 🌿 Branches: ${{ github.head_ref }} → ${{ github.base_ref }} | |
| 🔗 Open PR: | |
| ${{ github.event.pull_request.html_url }} |