renamed ilistner
to use_listner
#4
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
# generate github action workflow that runs on every commit with EverythingSuckz/github-telegram-notify | |
name: Notify on Telegram | |
on: [push] | |
jobs: | |
notify: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Notify the commit on Telegram | |
uses: EverythingSuckz/github-telegram-notify | |
with: | |
bot_token: '${{ secrets.BOT_TOKEN }}' | |
chat_id: '${{ secrets.CHAT_ID }}' |