VendorLens / .github /workflows /keep-alive.yml
Vishwajeet07's picture
initial
b8f6c99
raw
history blame contribute delete
238 Bytes
name: Keep Alive
on:
schedule:
- cron: '*/14 * * * *'
jobs:
ping:
runs-on: ubuntu-latest
steps:
- name: Ping health endpoint
run: |
curl -f ${{ secrets.APP_URL }}/api/health || echo "Ping failed"