Created
June 28, 2020 22:47
-
-
Save karenying/ceacd5a74a04b5a63136b382db211e12 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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