GitHunt
SE

seanf/rocketchatnotifier-plugin

Rocket Chat Notification Plugin for Jenkins

Rocket Chat Notification Plugin for Jenkins

Build Status

Usage

You can use it in the Workflow/Pipeline DSL

node {
    try {
     ...
    } catch (e) {
        rocketSend channel: 'abc', message: 'test'
        throw e
    }
}

If you omit channel you can shorten it as it would now use the global default channel:

node {
    try {
     ...
    } catch (e) {
        rocketSend 'test'
        throw e
    }
}

The message looks then like this:

sampel message

It also works with normal jobs:

job config

Admin settings

You can define a default notification channel:

sampel message

Languages

Java98.7%HTML1.3%

Contributors

Apache License 2.0
Created October 11, 2016
Updated January 10, 2026