Skip to content

Commit

Permalink
Merge PR #44 Patching #30: Always show user list
Browse files Browse the repository at this point in the history
in slack
  • Loading branch information
samrocketman committed Feb 4, 2015
2 parents 34b0709 + 3ec7d4f commit ec01e8a
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions src/main/java/jenkins/plugins/slack/ActiveNotifier.java
Original file line number Diff line number Diff line change
Expand Up @@ -91,10 +91,9 @@ public void completed(AbstractBuild r) {
|| (result == Result.UNSTABLE && jobProperty.getNotifyUnstable())) {
getSlack(r).publish(getBuildStatusMessage(r, jobProperty.includeTestSummary()),
getBuildColor(r));
}
if (result == Result.SUCCESS && jobProperty.getNotifySuccess()
&& jobProperty.getShowCommitList()) {
getSlack(r).publish(getCommitList(r), "good");
if (jobProperty.getShowCommitList()) {
getSlack(r).publish(getCommitList(r), getBuildColor(r));
}
}
}

Expand Down

0 comments on commit ec01e8a

Please sign in to comment.