Skip to content

.github/workflows/ping-flyio.yml #69109

.github/workflows/ping-flyio.yml

.github/workflows/ping-flyio.yml #69109

Workflow file for this run

name: Ping Fly.io
on:
schedule:
- cron: "* * * * *" # Schedule the workflow to run every minute
jobs:
ping:
runs-on: ubuntu-latest
steps:
- name: Send Ping Request
run: |
for i in {1..16}
do
curl https://blabber-hive.fly.dev
sleep 30
done
- name: Check Response
run: echo "Response received"