From 5cf777d0bf7f5ef7a195a9801fa50490d057d240 Mon Sep 17 00:00:00 2001 From: Claude Date: Thu, 11 Jun 2026 13:34:31 +0000 Subject: [PATCH] Route ping through Vercel endpoint instead of calling hc-ping.com directly GitHub Actions now calls /api/ping on Vercel, which forwards to hc-ping.com. This also monitors Vercel availability. https://claude.ai/code/session_01U8j5zqsX4kwqjnzq3EncSi --- .github/workflows/ping.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/ping.yml b/.github/workflows/ping.yml index 6b2d42c..e160f45 100644 --- a/.github/workflows/ping.yml +++ b/.github/workflows/ping.yml @@ -10,28 +10,28 @@ jobs: runs-on: ubuntu-latest steps: - name: Ping 1 - run: curl -fsS --retry 3 https://hc-ping.com/a4b80e88-d7ab-4edc-ad3e-9cd57036075e + run: curl -fsS --retry 3 https://hello-world-3o95ks7si-our-claude-s-projects.vercel.app/api/ping - name: Wait 2 min run: sleep 120 - name: Ping 2 - run: curl -fsS --retry 3 https://hc-ping.com/a4b80e88-d7ab-4edc-ad3e-9cd57036075e + run: curl -fsS --retry 3 https://hello-world-3o95ks7si-our-claude-s-projects.vercel.app/api/ping - name: Wait 2 min run: sleep 120 - name: Ping 3 - run: curl -fsS --retry 3 https://hc-ping.com/a4b80e88-d7ab-4edc-ad3e-9cd57036075e + run: curl -fsS --retry 3 https://hello-world-3o95ks7si-our-claude-s-projects.vercel.app/api/ping - name: Wait 2 min run: sleep 120 - name: Ping 4 - run: curl -fsS --retry 3 https://hc-ping.com/a4b80e88-d7ab-4edc-ad3e-9cd57036075e + run: curl -fsS --retry 3 https://hello-world-3o95ks7si-our-claude-s-projects.vercel.app/api/ping - name: Wait 2 min run: sleep 120 - name: Ping 5 - run: curl -fsS --retry 3 https://hc-ping.com/a4b80e88-d7ab-4edc-ad3e-9cd57036075e + run: curl -fsS --retry 3 https://hello-world-3o95ks7si-our-claude-s-projects.vercel.app/api/ping