testing the ci telegram bot #2
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: telegram message | |
on: [push] | |
jobs: | |
build: | |
name: Build | |
runs-on: ubuntu-latest | |
steps: | |
- name: send telegram message on push | |
uses: appleboy/telegram-action@master | |
with: | |
to: '@IntegratorPortalCIBot' | |
token: ${{ secrets.BotToken }} | |
message: | | |
🚀 *New Commit Made!* | |
_Author_: ${{ github.actor }} | |
_Commit Message_: ${{ github.event.commits[0].message }} | |
_Repository_: ${{ github.repository }} | |
[See changes here](https://github.com/${{ github.repository }}/commit/${{github.sha}}) |