mirror of
https://github.com/Mihirkansara/nexus-quant-terminal.git
synced 2026-08-23 07:38:08 +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:
co-authored by
Claude Sonnet 4.6
parent
aaa0acf64b
commit
7f299873cf
@@ -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