Weekly Zoom Reminder #1
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Weekly Zoom Reminder | |
on: | |
schedule: | |
# Runs at 12:00 PM UTC (noon) every Sunday | |
- cron: '0 12 * * 0' | |
jobs: | |
send-reminders: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Send Zoom Reminder Emails | |
run: | | |
curl -X POST \ | |
https://rudra-utkscf-fork.vercel.app/api/emails/actions/send-healthy-habits-zoom-link \ | |
-H "x-api-key: ${{ secrets.API_KEY }}" \ | |
-H "Content-Type: application/json" |