Skip to content

Commit

Permalink
feat: Add GitHub Actions workflow for weekly Zoom reminder emails
Browse files Browse the repository at this point in the history
  • Loading branch information
AlanKha committed Jan 16, 2025
1 parent 8fa406e commit 66a655e
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions .github/workflows/weekly-zoom-reminder.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
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"

0 comments on commit 66a655e

Please sign in to comment.