Skip to content

Commit

Permalink
Add metaAssistant schedules to serverless.ts
Browse files Browse the repository at this point in the history
  • Loading branch information
Jdallos committed Jan 9, 2024
1 parent 6486ed0 commit cb8d63e
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/functions/meta-assistant/send-daily-message/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,9 @@ export default {
}
}
}
},
{
schedule: "cron(15 6 ? * MON-FRI *)"
}
]
};
3 changes: 3 additions & 0 deletions src/functions/meta-assistant/send-weekly-message/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,9 @@ export default {
}
}
}
},
{
schedule: "cron(15 6 ? * MON *)"
}
]
};

0 comments on commit cb8d63e

Please sign in to comment.