Created
August 31, 2016 09:44
-
-
Save MakoTano/afe4ecf32dcb5370f2cd2c767409376f to your computer and use it in GitHub Desktop.
単純なレスポンスサンプル
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
module.exports = (robot) -> | |
# 「予定表」という言葉に反応してURLを発言 | |
robot.hear /予定表/i, (msg) -> | |
msg.send "http://sample.com/team/schedule" | |
# 「hubot my pr」と話かけられたら、自分向けのプルリクエスト一覧URLを発言 | |
# この例はSlackとGithubのアカウント名が同一であることを前提にしていますが、異なる場合は変換が必要です | |
URL = {} | |
URL.PR = "https://github.com/eure/repo/pulls/assigned/" | |
robot.respond /my\spr$/i, (msg) -> | |
my_name = msg.message.user.name | |
msg.send "#{URL.PR}#{my_name}" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment