Skip to content

Instantly share code, notes, and snippets.

@prashanth-sams
Last active March 25, 2019 07:50
Show Gist options
  • Save prashanth-sams/aa64724f840bdd9ca5243ec51e5f44af to your computer and use it in GitHub Desktop.
Save prashanth-sams/aa64724f840bdd9ca5243ec51e5f44af to your computer and use it in GitHub Desktop.
Hubot - Cron job 2
const CronJob = require("cron").CronJob
module.exports = robot => {
new CronJob(
"00 37 16 * * *",
function() {
try {
robot.messageRoom(
"general", `Hey Prashanth! You got a notification message now`
)
} catch (e) {
console.error(e)
}
},
null,
true,
"Asia/Dubai"
)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment