Skip to content
This repository was archived by the owner on May 30, 2025. It is now read-only.

Keep Backend Active #3599

Keep Backend Active

Keep Backend Active #3599

Workflow file for this run

name: Keep Backend Active
on:
schedule:
- cron: '*/15 * * * *' # Runs every 15 minutes
workflow_dispatch:
jobs:
ping-backend:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: 18
- name: Run ping script
run: cd scripts && node ping.js ${{ secrets.BACKEND_URL }}