2020-02-22 18:26:47 +00:00
|
|
|
name: Test sending notifications
|
|
|
|
|
|
|
|
on:
|
|
|
|
repository_dispatch:
|
|
|
|
types:
|
2021-07-15 07:00:43 +00:00
|
|
|
- test-sending-notifications
|
2020-02-22 18:26:47 +00:00
|
|
|
|
|
|
|
jobs:
|
|
|
|
send_sampe_notification:
|
|
|
|
name: Send sample notification
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- name: Send
|
|
|
|
uses: appleboy/telegram-action@master
|
|
|
|
with:
|
|
|
|
token: ${{ secrets.TELEGRAM_TOKEN }}
|
|
|
|
to: ${{ secrets.TELEGRAM_TO }}
|
|
|
|
message: Sample notification from GitHub Action of https://github.com/mlocati/docker-php-extension-installer
|