keepalive #89
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: keepalive | |
| # Keeps the Render free-tier backend warm so the live demo does not | |
| # cold-start for visitors. Offset minute list on purpose: GitHub throttles | |
| # */N and :00 schedules hard. | |
| on: | |
| schedule: | |
| - cron: "7,17,27,37,47,57 * * * *" | |
| workflow_dispatch: | |
| jobs: | |
| ping: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Ping backend | |
| run: curl -fsS -o /dev/null --max-time 120 https://stepsafe-api.onrender.com/docs |