Use concurrent futures to multithread 30 sockets at once. Add support… #50
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: tg-notify | |
| on: [push, pull_request] | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Update status | |
| uses: appleboy/telegram-action@master | |
| with: | |
| to: ${{ secrets.TELEGRAM_TO }} | |
| token: ${{ secrets.TELEGRAM_TOKEN }} | |
| message: | #https://help.github.com/en/actions/reference/contexts-and-expression-syntax-for-github-actions#github-context | |
| ${{ github.actor }} created commit: | |
| Commit message: ${{ github.event.head_commit.message }} | |
| Repository: ${{ github.repository }} | |
| Branch: ${{ github.ref_name }} | |
| See changes: https://github.com/${{ github.repository }}/commit/${{github.sha}} |