Skip to content

Instantly share code, notes, and snippets.

@prashanth-sams
Created March 25, 2019 07:50
Show Gist options
  • Save prashanth-sams/c217c5cdb71b986270e0e9719aa84eff to your computer and use it in GitHub Desktop.
Save prashanth-sams/c217c5cdb71b986270e0e9719aa84eff to your computer and use it in GitHub Desktop.
Hubot - Cron job 1
const cron = require("node-cron");
module.exports = robot => {
new cron.schedule("*/1 * * * *", function() {
robot.messageRoom(
"website", `I am running once in every 1 minute`
)
});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment