Notifier #15
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: Notifier | |
on: | |
workflow_run: | |
workflows: ["Beach Today"] | |
types: | |
- completed | |
jobs: | |
notifyTelegram: | |
runs-on: ubuntu-latest | |
steps: | |
- name: send custom message | |
uses: appleboy/telegram-action@master | |
with: | |
to: ${{ secrets.TELEGRAM_TO }} | |
token: ${{ secrets.TELEGRAM_TOKEN }} | |
message: | | |
The ${{ github.event_name }} event triggered final step. | |
echo This event is a pull request that had an assignee removed. |