Skip to main content
Coming Soon — Cron triggers are planned for a future release.
Cron triggers will let you schedule your edge functions to run automatically at specified intervals.

Current Alternative

Until cron triggers are available, use an external scheduler to call your function’s HTTP endpoint:
# .github/workflows/cron.yml
name: Scheduled Function Call
on:
  schedule:
    - cron: '0 * * * *'  # Every hour

jobs:
  trigger:
    runs-on: ubuntu-latest
    steps:
      - run: curl -X POST https://my-func-org123.telnyxcompute.com/cron