We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cd3e0f3 commit 53a121eCopy full SHA for 53a121e
.github/workflows/telegram.yml
@@ -0,0 +1,18 @@
1
+name: GitHub Notify on Telegram
2
+on:
3
+ pull_request:
4
+ branches:
5
+ - dev
6
+ types:
7
+ - closed
8
+
9
+jobs:
10
+ if_merged:
11
+ if: github.event.pull_request.merged == true
12
+ runs-on: ubuntu-latest
13
+ steps:
14
+ - name: Notify on Telegram
15
+ uses: EverythingSuckz/github-telegram-notify@main
16
+ with:
17
+ bot_token: '${{ secrets.BOT_TOKEN }}'
18
+ chat_id: '${{ secrets.CHAT_ID }}'
0 commit comments