arguments in composer install #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: issue | |
on: | |
issues: | |
types: [opened, edited, reopened] | |
issue_comment: | |
types: [created, edited] | |
jobs: | |
send_telegram_message: | |
name: send telegram message | |
runs-on: ubuntu-latest | |
steps: | |
- name: send telegram message | |
uses: appleboy/telegram-action@master | |
with: | |
to: ${{ secrets.TELEGRAM_TO }} | |
token: ${{ secrets.TELEGRAM_TOKEN }} | |
message: | | |
Github. Opened or edited issue | |
Author: ${{ github.actor }} | |
Repository: ${{ github.repository }} | |
See changes: https://github.com/${{ github.repository }}/issues/${{ github.event.issue.number }} |