Send new issue to Telegram #1
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Send new issue to Telegram | |
on: | |
issues: | |
types: [opened, reopened] | |
jobs: | |
build_latex: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Send Telegram message | |
uses: appleboy/telegram-action@master | |
with: | |
to: ${{ secrets.TELEGRAM_CHANNEL_ID }} | |
token: ${{ secrets.TELEGRAM_TOKEN }} | |
message: | | |
${{ github.event.issue.user.login }} created new issue "${{ github.event.issue.title }}" | |
See more by https://github.com/${{ github.repository }}/issues/${{ github.event.issue.number }} |