LoginSignup
19
19

More than 5 years have passed since last update.

herokuでhubotのcronjobを動かす時はtimezoneに注意する

Posted at

herokuでhubotを動かす時はTimezoneをちゃんと指定してあげないと適切な時間に実行されないです。
下記2パターンのどちらかでtimezoneを指定してあげましょう。

パターン1: cronjobのメソッドにtimezoneを指定する

cronJob = require('cron').CronJob
module.exports = (robot) ->
  new cronJob '0 0 10 * * 1-5', () =>
    robot.send room: "#general", "やほー"
  , null, true, "Asia/Tokyo"

パターン2: herokuのtimezoneを指定する

heroku config:add TZ=Asia/Tokyo
19
19
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
19
19