Skip to content

Instantly share code, notes, and snippets.

@ElliottLandsborough
Created December 3, 2015 14:28
Show Gist options
  • Select an option

  • Save ElliottLandsborough/5b073b161938b478e951 to your computer and use it in GitHub Desktop.

Select an option

Save ElliottLandsborough/5b073b161938b478e951 to your computer and use it in GitHub Desktop.
Hubot: Let the channel know that it is 13.37
# Description:
# 1337 Notify
#
# Dependencies:
# "cron": "^1.0.9",
# "time": "^0.11.3",
#
# Configuration:
# None
#
# Commands:
# None
#
# Author:
# elliott landsborough
module.exports = (robot) ->
cronJob = require('cron').CronJob
new cronJob('0 37 13 * * *', everyMinute(robot), null, true)
everyMinute = (robot) ->
-> robot.messageRoom '#help', '13.37'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment