github の irc hook に幾つかの event type が追加されました

github の settings/hooks には travis だったり、irc だったりに push などの通知をしてもらうことが出来る。
今までは irc では、 default は push, pull_request, support_events に issues があった。

ただ、comment された時とかも他の通知が来てくれると便利なので github/github-services · GitHub に pull-request を幾つか送って

  • commit_comment
  • issue_comment
  • pull_request_review_comment

irc に送ってもらえるようになった。使うには github の irc hook で issue も hook してもらう - @soh335 memo のような感じでやる。

ちなみに他にも Event types | GitHub API にあるものは通知させる事が出来るし、この service がどの event に対応しているかは https://api.github.com/hooks から分かる。

便利!