3 document unit tests for transaction model and testing pipeline #269
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: Telegram Gate | |
on: | |
issue_comment: | |
types: [created] | |
issues: | |
types: [opened, edited, pinned, closed, reopened, assigned, labeled] | |
pull_request: | |
types: | |
[opened, closed, edited, ready_for_review, review_requested, reopened] | |
pull_request_review_comment: | |
types: [created] | |
push: | |
jobs: | |
build: | |
name: Telegram Gate | |
runs-on: ubuntu-latest | |
steps: | |
- name: Notifier | |
uses: ethyaan/[email protected] | |
if: always() | |
with: | |
token: ${{ secrets.TELEGRAM_BOT_TOKEN }} | |
to: ${{ secrets.TELEGRAM_CHAT_ID }} | |
thread_id: ${{ secrets.TELEGRAM_CHAT_TOPIC }} | |
disable_web_page_preview: true | |
disable_notification: false |