Skip to content

Keep daylog Alive #2975

Keep daylog Alive

Keep daylog Alive #2975

Workflow file for this run

name: Keep daylog Alive
on:
schedule:
- cron: "*/5 * * * *" # Runs every 5 minutes
jobs:
ping:
runs-on: ubuntu-latest
steps:
- name: Ping daylog
run: |
for i in 1 2 3; do
curl -s https://daylog.onrender.com/ > /dev/null && break
sleep 10
done