Keep daylog Alive #2961
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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 |