Skip to content

Push Notification Cron #27

Push Notification Cron

Push Notification Cron #27

Workflow file for this run

name: Push Notification Cron
on:
schedule:
# Runs every 15 minutes
- cron: '*/15 * * * *'
workflow_dispatch: # Allows manual trigger from the GitHub Actions tab
jobs:
ping_cron:
runs-on: ubuntu-latest
steps:
- name: Ping API
run: |
curl -X GET "https://eventide-calender.vercel.app/api/cron/notifications" \
-H "Authorization: Bearer ${{ secrets.CRON_SECRET }}"