Synapse Keepalive Ping #200
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: Synapse Keepalive Ping | |
| on: | |
| schedule: | |
| - cron: '*/10 * * * *' # A cada 10 minutos | |
| jobs: | |
| ping: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Run keepalive pings | |
| run: | | |
| sleep $((RANDOM % 60)) | |
| for url in "https://forge.synapselayer.org/api/health" "https://forge.synapselayer.org/api/ping" "https://forge.synapselayer.org/api/mcp"; do | |
| curl -s -m 30 "$url" -H "User-Agent: SynapseKeepAlive/1.0" || true | |
| done |