HipChat notification: do not include latest commits of all inputs in 'who-broke-the-build' list. Use only committers from inputs that have actually changed since previous build.

This commit is contained in:
Rob Vermaas 2013-08-26 11:06:10 +00:00
parent 9a9b798939
commit a98075f386

View file

@ -51,6 +51,7 @@ sub buildFinished {
next if $curInput->type ne $prevInput->type;
next if $curInput->uri ne $prevInput->uri;
next if $curInput->revision eq $prevInput->revision;
my @commits;
foreach my $plugin (@{$self->{plugins}}) {