You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
471 B
16 lines
471 B
name: Telegram Notifications
|
|
|
|
on:
|
|
issues:
|
|
types: [opened, reopened, deleted, closed]
|
|
|
|
jobs:
|
|
notify:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- name: Send notifications to Telegram
|
|
run: curl -s -X POST https://api.telegram.org/bot${{ secrets.TELEGRAM_TOKEN }}/sendMessage -d chat_id=${{ secrets.TELEGRAM_CHAT_ID }} -d text="${MESSAGE}" >> /dev/null
|
|
env:
|
|
MESSAGE: "Issue ${{ github.event.action }}: \n${{ github.event.issue.html_url }}"
|