We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 77d73b7 commit 6c04bbdCopy full SHA for 6c04bbd
.github/SYNDICATION_SETUP.md
@@ -225,7 +225,7 @@ The workflow will:
225
- ❌ Report errors to GitHub Actions logs
226
- 🔄 Use IFTTT as fallback for failed API calls
227
- 💾 Cache processed items to prevent duplicates
228
-- ⏰ Run backup checks every 30 minutes
+- ⏰ Run daily backup check at 11am UTC
229
- 📅 Only syndicate items published today (prevents re-posting old content)
230
231
## Migration from Zapier
.github/workflows/syndicate-content.yml
@@ -23,9 +23,9 @@ on:
23
default: false
24
type: boolean
25
26
- # Scheduled backup check (runs every 30 minutes)
+ # Scheduled daily check at 11am UTC
27
schedule:
28
- - cron: "*/30 * * * *"
+ - cron: "0 11 * * *"
29
30
jobs:
31
syndicate:
0 commit comments