From 1a1e69a852054fe2e7fe903e97b3fba6a52322ac Mon Sep 17 00:00:00 2001 From: verytactical <186486509+verytactical@users.noreply.github.com> Date: Mon, 18 Nov 2024 11:29:26 +0400 Subject: [PATCH] fix(ci): don't fail when can't send message to telegram (#1054) --- .github/workflows/pull.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/pull.yml b/.github/workflows/pull.yml index 9fc6612a2..f42f44769 100644 --- a/.github/workflows/pull.yml +++ b/.github/workflows/pull.yml @@ -10,6 +10,7 @@ jobs: steps: - name: Send telegram message on push uses: appleboy/telegram-action@v1.0.0 + continue-on-error: true with: to: ${{ secrets.TELEGRAM_ISSUE_CHAT_ID }} token: ${{ secrets.TELEGRAM_ISSUE_TOKEN }}