baohuo
Vercel Deploy / deploy (push) Successful in 1m44s

This commit is contained in:
2026-04-30 17:01:09 +08:00
Unverified
parent 923525b6d1
commit bf27f6dbdc
+18
View File
@@ -0,0 +1,18 @@
name: Supabase Keep Alive
on:
schedule:
- cron: "0 0 */3 * *" # 每3天一次(UTC
workflow_dispatch:
jobs:
ping:
runs-on: ubuntu-latest
steps:
- name: Ping Supabase
run: |
curl -sS -f \
"${SUPABASE_URL}/rest/v1/your_table_name?select=id&limit=1" \
-H "apikey: ${SUPABASE_ANON_KEY}" \
-H "Authorization: Bearer ${SUPABASE_ANON_KEY}"