File tree Expand file tree Collapse file tree 1 file changed +8
-0
lines changed Expand file tree Collapse file tree 1 file changed +8
-0
lines changed Original file line number Diff line number Diff line change 33
33
- cron : ' 0 16 25 * *'
34
34
# New: Reminds to ask family to support mortgage payment on the 16th of every month at 9 PM Taipei time (1 PM UTC).
35
35
- cron : ' 0 13 16 * *'
36
+ # New: Reminds to watch TV with partner every Friday, Saturday, and Sunday at 10 PM Taipei time (2 PM UTC).
37
+ - cron : ' 0 14 * * 5-0'
36
38
workflow_dispatch : # Allows manual triggering
37
39
38
40
concurrency :
@@ -138,6 +140,12 @@ jobs:
138
140
run : python scripts/release/reminders_bot.py --job send_message --message "Ask family to support mortgage payment"
139
141
if : github.event.schedule == '0 13 16 * *'
140
142
143
+ - name : Run Telegram script for watch TV with partner reminder
144
+ env :
145
+ TELEGRAM_BOT2_API_KEY : ${{ secrets.TELEGRAM_BOT2_API_KEY }}
146
+ run : python scripts/release/reminders_bot.py --job send_message --message "Time to watch TV with your partner!"
147
+ if : github.event.schedule == '0 14 * * 5-0'
148
+
141
149
- name : Run Telegram script for test message
142
150
env :
143
151
TELEGRAM_BOT2_API_KEY : ${{ secrets.TELEGRAM_BOT2_API_KEY }}
You can’t perform that action at this time.
0 commit comments