.github/workflows/ping-flyio.yml #69110
This file contains 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: 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" |