Skip to content

Keep Supabase Awake

Keep Supabase Awake #2

Workflow file for this run

name: Keep Supabase Awake
on:
schedule:
- cron: '0 7 * * *' # Roda todos os dias às 7h UTC
workflow_dispatch: # Permite execução manual
jobs:
ping:
runs-on: ubuntu-latest
steps:
- name: Ping Supabase endpoint
run: |
curl -I https://lddfufxcrnqixfiyhrvc.supabase.co/rest/v1/announcements \
-H "apikey: ${{ secrets.SUPABASE_ANON_KEY }}" \
-H "Authorization: Bearer ${{ secrets.SUPABASE_ANON_KEY }}"