mirror of
https://github.com/Mihirkansara/nexus-quant-terminal.git
synced 2026-08-06 23:47:43 +00:00
7f299873cf
Pings backend every 10 minutes so Render free tier never sleeps. Reads BACKEND_URL from GitHub Actions secret. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
15 lines
281 B
YAML
15 lines
281 B
YAML
name: Keep Backend Alive
|
|
|
|
on:
|
|
schedule:
|
|
- cron: '*/10 * * * *' # every 10 minutes
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
ping:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Ping backend
|
|
run: |
|
|
curl -sf ${{ secrets.BACKEND_URL }} || echo "Backend ping failed"
|