mirror of
https://github.com/Mihirkansara/nexus-quant-terminal.git
synced 2026-07-27 18:47:49 +00:00
chore: add GitHub Actions keep-alive ping for Render backend
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>
This commit is contained in:
@@ -0,0 +1,14 @@
|
||||
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"
|
||||
Reference in New Issue
Block a user