We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7175bfa commit 467d000Copy full SHA for 467d000
.github/workflows/main.yml
@@ -1,5 +1,19 @@
1
- - name: Github Telegram Notifier
2
- uses: EverythingSuckz/[email protected]
3
- with:
4
- bot_token: '${{ secrets.TG_BOT_TOKEN }}'
5
- chat_id: '${{ secrets.TG_CHAT_ID }}'
+name: Github Telegram Notifier
+
+on:
+ push:
+ branches:
6
+ - '**' # Triggers on any branch
7
+ pull_request:
8
9
10
11
+jobs:
12
+ notify:
13
+ runs-on: ubuntu-latest
14
+ steps:
15
+ - name: Send Telegram Notification
16
+ uses: EverythingSuckz/[email protected]
17
+ with:
18
+ bot_token: ${{ secrets.TG_BOT_TOKEN }}
19
+ chat_id: ${{ secrets.TG_CHAT_ID }}
0 commit comments