Skip to content

Commit

Permalink
create workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
GyverLibs committed Jun 27, 2022
1 parent 78563b3 commit 1ccfb11
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/tg-send.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@

name: Telegram Message
on:
release:
types: [published]
jobs:
build:
name: Send Message
runs-on: ubuntu-latest
steps:
- name: send telegram message on push
uses: appleboy/telegram-action@master
with:
to: ${{ secrets.TELEGRAM_TO }}
token: ${{ secrets.TELEGRAM_TOKEN }}
message: |
${{ github.event.repository.name }}
${{ github.event.release.body }}
https://github.com/${{ github.repository }}

0 comments on commit 1ccfb11

Please sign in to comment.