Last active
July 14, 2016 18:26
-
-
Save brianantonelli/43c8cbaa56ef2a5c497d1f3f8ce2a901 to your computer and use it in GitHub Desktop.
Jenkins Workflow Shared Library
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
package com.coxautoinc.workflow.jenkins | |
String sendToSlack (team, token, channel, message, color) { | |
slackSend channel: channel, teamDomain: team, token: token, color: color, message: message | |
return "done" | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment