Skip to content

Daily course reminder #76

Daily course reminder

Daily course reminder #76

Workflow file for this run

name: Daily course reminder
on:
schedule:
- cron: '0 6 * * *'
jobs:
cron:
runs-on: ubuntu-latest
steps:
- name: Daily course reminder
run: |
curl --request POST \
--url ${{ secrets.REMINDER_API_URL }} \
--header "Authorization: Bearer ${{ secrets.API_AUTH_TOKEN }}"