Half-hourly render ping #119
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
| # Simulated daily request to your render project so that the service doesn't go down | |
| name: Half-hourly render ping | |
| on: | |
| schedule: | |
| - cron: '* * * * *' # Runs every 30 minutes (UTC) | |
| workflow_dispatch: # Allows manual triggering | |
| jobs: | |
| curl-website: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Run cURL on Website | |
| run: curl -I https://codifier-xrzs.onrender.com/ |