Keep Supabase Awake #41
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Keep Supabase Awake | |
| on: | |
| schedule: | |
| # This runs at midnight and noon (UTC) every single day. | |
| - cron: '0 */12 * * *' | |
| workflow_dispatch: # This adds a "Run Workflow" button in the Actions tab. | |
| jobs: | |
| ping: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Ping Site | |
| # Replace the URL below with your actual site URL or API route | |
| run: curl -LsI https://axmldlvejcfbopctqkrw.supabase.co/functions/v1/keep-alive |