Receive and display nicely web hooks from GitLab CI in HipChat.
Add lita-gitlab-ci-hipchat to your Lita instance's Gemfile:
gem 'lita-gitlab-ci-hipchat', '~> 1.1'
For Lita 3.x, use the 1.0 version of this gem.
Lita.configure do |config|
# The API token for your bot’s user
config.handlers.gitlab_ci_hipchat.api_token = 'token'
# The room to be notified (HipChat name, not JID)
config.handlers.gitlab_ci_hipchat.room = 'my_room'
end
This handler add a HTTP route at /gitlab-ci
. So you have to add a web
hook pointing to that URL in GitLab CI (http://lita-bot.tld/gitlab-ci).