Skip to content

Instantly share code, notes, and snippets.

@karenying
Created June 28, 2020 22:47
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save karenying/ceacd5a74a04b5a63136b382db211e12 to your computer and use it in GitHub Desktop.
Save karenying/ceacd5a74a04b5a63136b382db211e12 to your computer and use it in GitHub Desktop.
function createJob() {
const task = cron.schedule(
'32 12 * * 1-5',
() => {
bot.postMessageToChannel('lunchbot-test', 'go eat lunch ali');
},
{
scheduled: true,
timezone: 'America/New_York',
}
);
task.start();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment