Daily Deadline Notification #20
This file contains hidden or 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: Daily Deadline Notification | |
| on: | |
| schedule: | |
| - cron: "0 5 * * *" # 08:00 по Киеву (UTC+3) | |
| workflow_dispatch: | |
| jobs: | |
| ping: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Send request to Taskino | |
| run: | | |
| curl -X POST "https://taskino-3hzc.onrender.com/api/send-daily/" -H "Authorization: Cron ${{ secrets.CRON_SECRET }}" |