Notice about review approved via Telegram #302
Workflow file for this run
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: Notice about review approved via Telegram | |
on: | |
pull_request_review: | |
types: [ submitted ] | |
jobs: | |
build: | |
if: github.event.review.state == 'approved' && toJSON(github.event.pull_request.requested_reviewers) == '[]' | |
runs-on: ubuntu-latest | |
steps: | |
- name: Convert date format | |
id: date | |
run: echo "::set-output name=date::$(date -d "${{ github.event.pull_request.created_at }}" +"%Y-%m-%d")" | |
- name: Send telegram message on review approved | |
uses: appleboy/telegram-action@master | |
with: | |
to: ${{ secrets.TELEGRAM_PLUGINS_TO }} | |
token: ${{ secrets.TELEGRAM_REVIEWER_TOKEN }} | |
message: | | |
💥🎉🎉🎉💥 Pull-request <a href="${{ github.event.pull_request.html_url }}"><strong>${{ github.event.pull_request.title }}</strong></a> | |
submitted by <strong>${{ github.event.pull_request.user.login }}</strong> at <strong>${{ steps.date.outputs.date }}</strong> | |
was <strong>approved</strong> and is ready to merge <a href="${{ github.event.pull_request.html_url }}">➡️</a> !!! | |
format: html | |
disable_web_page_preview: true |