diff options
author | Wild Kat <wk@futureinquestion.net> | 2018-03-20 23:15:34 +0100 |
---|---|---|
committer | Wild Kat <wk@futureinquestion.net> | 2018-03-20 23:15:34 +0100 |
commit | 6f672654c7e725bc828b6577297b86d501780c50 (patch) | |
tree | cf29588894d0c071f0e6b393671c84b7dd605163 /lib/oxidized/hook/slackdiff.rb | |
parent | baee367bfec7ec5241ad7e893de7df8ea7eec1e7 (diff) | |
parent | e7075d18e055613cb0324f0fc8eecfe7adeeac56 (diff) |
refactor snr support into dcnos model
Diffstat (limited to 'lib/oxidized/hook/slackdiff.rb')
-rw-r--r-- | lib/oxidized/hook/slackdiff.rb | 18 |
1 files changed, 10 insertions, 8 deletions
diff --git a/lib/oxidized/hook/slackdiff.rb b/lib/oxidized/hook/slackdiff.rb index 728e5a7..7cd4465 100644 --- a/lib/oxidized/hook/slackdiff.rb +++ b/lib/oxidized/hook/slackdiff.rb @@ -30,14 +30,16 @@ class SlackDiff < Oxidized::Hook if diffenable == true gitoutput = ctx.node.output.new diff = gitoutput.get_diff ctx.node, ctx.node.group, ctx.commitref, nil - title = "#{ctx.node.name.to_s} #{ctx.node.group.to_s} #{ctx.node.model.class.name.to_s.downcase}" - log "Posting diff as snippet to #{cfg.channel}" - client.files_upload(channels: cfg.channel, as_user: true, - content: diff[:patch].lines.to_a[4..-1].join, - filetype: "diff", - title: title, - filename: "change" - ) + unless diff == "no diffs" + title = "#{ctx.node.name.to_s} #{ctx.node.group.to_s} #{ctx.node.model.class.name.to_s.downcase}" + log "Posting diff as snippet to #{cfg.channel}" + client.files_upload(channels: cfg.channel, as_user: true, + content: diff[:patch].lines.to_a[4..-1].join, + filetype: "diff", + title: title, + filename: "change" + ) + end end # message custom formatted - optional if cfg.has_key?('message') == true |