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 63337f4 commit eceb0feCopy full SHA for eceb0fe
.github/workflows/new-event-notify.yml
@@ -0,0 +1,24 @@
1
+name: Event Notifier
2
+
3
+on:
4
+ issues:
5
+ types: [opened, labeled, reopened]
6
7
+concurrency:
8
+ group: ${{ github.workflow }}-${{ github.event.issue.number || github.event.pull_request.number }}
9
+ cancel-in-progress: true
10
11
+permissions:
12
+ issues: read
13
14
+jobs:
15
+ notify:
16
+ name: "Telegram notification"
17
+ runs-on: ubuntu-latest
18
+ steps:
19
+ - name: Send Telegram notification for new issue
20
+ uses: sehat1137/telegram-notifier@5d130037eb80a33251f3afe8bc56447236acab77 # v1.3.0
21
+ with:
22
+ tg-bot-token: ${{ secrets.TELEGRAM_BOT_TOKEN }}
23
+ tg-chat-id: ${{ secrets.TELEGRAM_CHAT_ID }}
24
+ github-token: ${{ secrets.GITHUB_TOKEN }}
0 commit comments