Skip to content

Instantly share code, notes, and snippets.

View alex-streza's full-sized avatar
🦊
Likely coding

Alex Streza alex-streza

🦊
Likely coding
View GitHub Profile
@alex-streza
alex-streza / sync-cron.yml
Created December 8, 2022 08:54
GitHub Action to register a cron job that triggers a sync event on Vercel hosted endpoint
name: 5-minute-cron
on:
schedule:
- cron: "*/5 * * * *"
jobs:
cron:
runs-on: ubuntu-latest
steps:
- name: Call the sync API endpoint on Vercel
run: |