No commit activity in last 3 years
No release in over 3 years
Reports notifications from the jenkins notification plugin
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

~> 1.3
>= 0
~> 3.4

Runtime

>= 4.0
>= 1.9.0
 Project Readme

lita-jenkins-notifier

Build Status Code Climate Coverage Status

This plugin will provide a way for the Jenkins Notification Plugin to push notifications to your bot, so it can annoy you in IRC when things fail, or succeed, or some combination of both!

Installation

Add lita-jenkins-notifier to your Lita instance's Gemfile:

gem "lita-jenkins-notifier"

Configuration

jobs (Hash) - A map of job names to channel notifications. Keys should be a regex that matches a job name (Dev.*) . You could match many of the regexpes, all will be tested. Values should be either the string room name, or an array of string room names.

Example

Lita.configure do |config|
  config.handlers.jenkins_notifier.jbos = {
    "JenkinsJob" => "#someroom",
    ".*" => "#spamroom"
  }

Usage

You add to the jenkins notifier plugin to post to the http://<BotHost>:<port>/jenkins/notifications and when builds happen it'll notify in chat based on the matched job name.

License

MIT