Skip to content

Commit

Permalink
Update telegram-notifications.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
Heistergand authored Apr 28, 2024
1 parent ddf264c commit 0516dc1
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions .github/workflows/telegram-notifications.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,28 +16,28 @@ jobs:
with:
to: ${{ secrets.TELEGRAM_TO }}
token: ${{ secrets.TELEGRAM_TOKEN }}
format: markdown
format: html
message: |
🚨 New GitHub Issue 🚨
Repository: ${{ github.repository }}
**${{ github.actor }}** created a new issue.
**Issue Title:** ${{ github.event.issue.title }}
**Issue URL:** ${{ github.event.issue.html_url }}
<b>Repository:</b> ${{ github.repository }}
<b>${{ github.actor }}</b> created a new issue.
<b>Issue Title:</b> ${{ github.event.issue.title }}
<b>Issue URL:</b> ${{ github.event.issue.html_url }}
- name: Send Telegram Notification
if: ${{ github.event_name == 'issue_comment' }}
uses: appleboy/telegram-action@master
with:
to: ${{ secrets.TELEGRAM_TO }}
token: ${{ secrets.TELEGRAM_TOKEN }}
format: markdown
format: html
message: |
📝 New Comment on GitHub Issue 📝
**Repository:** ${{ github.repository }}
**Issue URL:** ${{ github.event.issue.html_url }}
<b>Repository:</b> ${{ github.repository }}
<b>Issue URL:</b> ${{ github.event.issue.html_url }}
**${{ github.actor }}** commented:
"_${{ github.event.comment.body }}_"
<b>${{ github.actor }}</b> commented:
<blockquote>${{ github.event.comment.body }}</blockquote>

0 comments on commit 0516dc1

Please sign in to comment.