From 6d5445f72f571e0cc9e5b15fb94b6450f4a5be58 Mon Sep 17 00:00:00 2001 From: ardocrat Date: Mon, 26 Jan 2026 08:38:14 +0300 Subject: [PATCH] ci: telegram notify url --- .forgejo/workflows/build.yaml | 2 ++ .forgejo/workflows/pr.yaml | 2 ++ .forgejo/workflows/release.yaml | 2 ++ 3 files changed, 6 insertions(+) diff --git a/.forgejo/workflows/build.yaml b/.forgejo/workflows/build.yaml index caf167b6..8f553445 100644 --- a/.forgejo/workflows/build.yaml +++ b/.forgejo/workflows/build.yaml @@ -28,6 +28,7 @@ jobs: if: ${{ steps.check.outputs.test == 'true' && (success() || failure()) }} uses: actions/telegram-notifier@ardocrat with: + api_url: ${{ secrets.TELEGRAM_API_URL }} token: ${{ secrets.TELEGRAM_BOT_TOKEN }} chat_id: ${{ secrets.TELEGRAM_CHANNEL_ID }} status: ${{ job.status }} @@ -36,6 +37,7 @@ jobs: if: ${{ steps.check.outputs.test == 'true' && (success() || failure()) }} uses: actions/telegram-notifier@ardocrat with: + api_url: ${{ secrets.TELEGRAM_API_URL }} token: ${{ secrets.TELEGRAM_BOT_TOKEN }} chat_id: ${{ secrets.TELEGRAM_GROUP_ID }} status: ${{ job.status }} diff --git a/.forgejo/workflows/pr.yaml b/.forgejo/workflows/pr.yaml index 7bb69476..6b6b24eb 100644 --- a/.forgejo/workflows/pr.yaml +++ b/.forgejo/workflows/pr.yaml @@ -14,6 +14,7 @@ jobs: - name: Telegram Notify Channel uses: actions/telegram-notifier@ardocrat with: + api_url: ${{ secrets.TELEGRAM_API_URL }} token: ${{ secrets.TELEGRAM_BOT_TOKEN }} chat_id: ${{ secrets.TELEGRAM_CHANNEL_ID }} status: ${{ job.status }} @@ -21,6 +22,7 @@ jobs: - name: Telegram Notify Group uses: actions/telegram-notifier@ardocrat with: + api_url: ${{ secrets.TELEGRAM_API_URL }} token: ${{ secrets.TELEGRAM_BOT_TOKEN }} chat_id: ${{ secrets.TELEGRAM_GROUP_ID }} status: ${{ job.status }} diff --git a/.forgejo/workflows/release.yaml b/.forgejo/workflows/release.yaml index 37ba55a1..b410830a 100644 --- a/.forgejo/workflows/release.yaml +++ b/.forgejo/workflows/release.yaml @@ -195,6 +195,7 @@ jobs: if: always() uses: actions/telegram-notifier@ardocrat with: + api_url: ${{ secrets.TELEGRAM_API_URL }} token: ${{ secrets.TELEGRAM_BOT_TOKEN }} chat_id: ${{ secrets.TELEGRAM_CHANNEL_ID }} status: ${{ job.status }} @@ -203,6 +204,7 @@ jobs: if: always() uses: actions/telegram-notifier@ardocrat with: + api_url: ${{ secrets.TELEGRAM_API_URL }} token: ${{ secrets.TELEGRAM_BOT_TOKEN }} chat_id: ${{ secrets.TELEGRAM_GROUP_ID }} status: ${{ job.status }}