Keep Render Backend Working #9688
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 Render Backend Working | |
| on: | |
| schedule: | |
| - cron: '*/15 * * * *' # Every 15 minutes | |
| workflow_dispatch: # manual trigger | |
| jobs: | |
| ping: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Send HTTP ping to Render backend | |
| shell: bash | |
| run: | | |
| RESPONSE=$(curl -s -o /dev/null -w "%{http_code}" https://z-studio.onrender.com/health-123) | |
| echo "Ping response code: $RESPONSE" |