Skip to content

Commit e9b487d

Browse files
Merge pull request #1752 from jackh726/fix_types_cron
Fix types planning cron job, only Mondays instead of every day
2 parents d7df9ee + 526ac43 commit e9b487d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/jobs.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ pub fn default_jobs() -> Vec<JobSchedule> {
9494
name: TypesPlanningMeetingThreadOpenJob.name(),
9595
// We want last Monday of every month, but cron unfortunately doesn't support that
9696
// Instead, every Monday and we can check
97-
schedule: Schedule::from_str("0 0 12 ? * * *").unwrap(),
97+
schedule: Schedule::from_str("0 0 0 ? * MON *").unwrap(),
9898
metadata: serde_json::Value::Null,
9999
},
100100
]

0 commit comments

Comments
 (0)