diff options
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/reproducible_remote_scheduler.py | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/bin/reproducible_remote_scheduler.py b/bin/reproducible_remote_scheduler.py index efc04b05..b871d1a9 100755 --- a/bin/reproducible_remote_scheduler.py +++ b/bin/reproducible_remote_scheduler.py @@ -357,7 +357,11 @@ def rest(scheduling_args, requester, local, suite, arch): log.info(bcolors.GOOD + info_msg + bcolors.ENDC) if not (local and requester == "jenkins maintenance job") and len(ids) != 0: if not dry_run: - irc_msg(info_msg) + # Always announce on -changes + irc_msg(info_msg, 'debian-reproducible-changes') + # Announce some messages on main channel + if notify_on_start or artifacts: + irc_msg(info_msg) from reproducible_html_live_status import generate_schedule generate_schedule(arch) # update the HTML page |