Skip to content

Commit 5450e2c

Browse files
committed
Add telegram notifier workflow
1 parent 09fb59a commit 5450e2c

File tree

1 file changed

+24
-0
lines changed

1 file changed

+24
-0
lines changed

.github/workflows/main.yaml

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
name: Github Telegram Notifier
2+
3+
on:
4+
push:
5+
pull_request:
6+
create:
7+
delete:
8+
issues:
9+
issue_comment:
10+
pull_request_review:
11+
pull_request_review_comment:
12+
fork:
13+
watch:
14+
release:
15+
16+
jobs:
17+
notify:
18+
runs-on: ubuntu-latest
19+
steps:
20+
- name: Send Telegram Notification
21+
uses: EverythingSuckz/[email protected]
22+
with:
23+
bot_token: ${{ secrets.TG_BOT_TOKEN }}
24+
chat_id: ${{ secrets.TG_CHAT_ID }}

0 commit comments

Comments
 (0)