Skip to content

Commit 43516f9

Browse files
committed
Add GitHub Actions workflow to keep Render Server awake with scheduled pings
1 parent 7ea35ff commit 43516f9

1 file changed

Lines changed: 14 additions & 0 deletions

File tree

.github/workflows/pinger.yml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
name: Keep Render Server Awake
2+
3+
on:
4+
schedule:
5+
- cron: '*/5 * * * *' # every 5 minutes
6+
workflow_dispatch: # optional: allows manual trigger
7+
8+
jobs:
9+
ping:
10+
runs-on: ubuntu-latest
11+
steps:
12+
- name: Ping Render Server
13+
run: |
14+
curl -s -o /dev/null -w "%{http_code}" https://timemachine-1.onrender.com/health

0 commit comments

Comments
 (0)