We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 103487a commit 93a0e33Copy full SHA for 93a0e33
1 file changed
.github/workflows/half-hourly-ping.yml
@@ -0,0 +1,15 @@
1
+# Simulated daily request to your render project so that the service doesn't go down
2
+name: Half-hourly render ping
3
+
4
+on:
5
+ schedule:
6
+ - cron: '*/30 * * * *' # Runs every 30 minutes (UTC)
7
+ workflow_dispatch: # Allows manual triggering
8
9
+jobs:
10
+ curl-website:
11
+ runs-on: ubuntu-latest
12
13
+ steps:
14
+ - name: Run cURL on Website
15
+ run: curl -I https://codifier-xrzs.onrender.com/
0 commit comments