Skip to content

Commit

Permalink
Merge pull request #1752 from jackh726/fix_types_cron
Browse files Browse the repository at this point in the history
Fix types planning cron job, only Mondays instead of every day
  • Loading branch information
Mark-Simulacrum authored Nov 27, 2023
2 parents d7df9ee + 526ac43 commit e9b487d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/jobs.rs
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ pub fn default_jobs() -> Vec<JobSchedule> {
name: TypesPlanningMeetingThreadOpenJob.name(),
// We want last Monday of every month, but cron unfortunately doesn't support that
// Instead, every Monday and we can check
schedule: Schedule::from_str("0 0 12 ? * * *").unwrap(),
schedule: Schedule::from_str("0 0 0 ? * MON *").unwrap(),
metadata: serde_json::Value::Null,
},
]
Expand Down

0 comments on commit e9b487d

Please sign in to comment.