Skip to content

Commit 6c04bbd

Browse files
authored
Change workflow schedule from every 30 minutes to daily at 11am UTC (#139)
1 parent 77d73b7 commit 6c04bbd

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/SYNDICATION_SETUP.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -225,7 +225,7 @@ The workflow will:
225225
- ❌ Report errors to GitHub Actions logs
226226
- 🔄 Use IFTTT as fallback for failed API calls
227227
- 💾 Cache processed items to prevent duplicates
228-
- ⏰ Run backup checks every 30 minutes
228+
- ⏰ Run daily backup check at 11am UTC
229229
- 📅 Only syndicate items published today (prevents re-posting old content)
230230

231231
## Migration from Zapier

.github/workflows/syndicate-content.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,9 +23,9 @@ on:
2323
default: false
2424
type: boolean
2525

26-
# Scheduled backup check (runs every 30 minutes)
26+
# Scheduled daily check at 11am UTC
2727
schedule:
28-
- cron: "*/30 * * * *"
28+
- cron: "0 11 * * *"
2929

3030
jobs:
3131
syndicate:

0 commit comments

Comments
 (0)