Skip to content

Instantly share code, notes, and snippets.

@hidepin
Last active February 29, 2016 23:24
Show Gist options
  • Save hidepin/b7394fedf2c9ba793f75 to your computer and use it in GitHub Desktop.
Save hidepin/b7394fedf2c9ba793f75 to your computer and use it in GitHub Desktop.
hubot
https://github.com/github/hubot-scripts
https://github.com/github/hubot/blob/master/docs/adapters.md
cron
```
cat scripts/cron.coffee [~/hubot/hubot]
# Description:
# cron
#
cron = require('cron').CronJob
module.exports = (robot) ->
job = new cron '* * * * *', ->
robot.send room: """
Good Night
"""
job.start()
```
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment