fix(ci): 使用正確的 Telegram Secret 名稱

OPENCLAW_TG_BOT_TOKEN, OPENCLAW_TG_CHAT_ID (已存在)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
OG T
2026-03-26 12:20:42 +08:00
parent a61ea2f14d
commit 25cc0fb4b2

View File

@@ -107,6 +107,6 @@ jobs:
- name: Notify on Failure
if: failure()
run: |
curl -s -X POST "https://api.telegram.org/bot${{ secrets.TELEGRAM_BOT_TOKEN }}/sendMessage" \
-d "chat_id=${{ secrets.TELEGRAM_CHAT_ID }}" \
curl -s -X POST "https://api.telegram.org/bot${{ secrets.OPENCLAW_TG_BOT_TOKEN }}/sendMessage" \
-d "chat_id=${{ secrets.OPENCLAW_TG_CHAT_ID }}" \
-d "text=❌ Daily E2E Health Check 失敗%0A時間: $(TZ='Asia/Taipei' date '+%Y-%m-%d %H:%M')%0A詳情: ${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }}"