Files
Letters/.gitea/workflows/keepactive.yml
T
biss e160a9520e
Vercel Deploy / deploy (push) Has been cancelled
11
2026-04-30 17:02:01 +08:00

18 lines
408 B
YAML
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
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/xinhan?select=id&limit=1" \
-H "apikey: ${SUPABASE_ANON_KEY}" \
-H "Authorization: Bearer ${SUPABASE_ANON_KEY}"