diff --git a/cli/koji_cli/commands.py b/cli/koji_cli/commands.py index 58026dc1..3cb4772e 100644 --- a/cli/koji_cli/commands.py +++ b/cli/koji_cli/commands.py @@ -3687,6 +3687,9 @@ def anon_handle_buildinfo(goptions, session, args): else: print("Task: none") print("Finished: %s" % koji.formatTimeLong(info['completion_ts'])) + if info.get('promotion_ts'): + print("Promoted by: %(promoter_name)s" % info) + print("Promoted at: %s" % koji.formatTimeLong(info['promotion_ts'])) maven_info = session.getMavenBuild(info['id']) if maven_info: print("Maven groupId: %s" % maven_info['group_id']) diff --git a/www/kojiweb/buildinfo.chtml b/www/kojiweb/buildinfo.chtml index 5b1fbe03..e7a45e8a 100644 --- a/www/kojiweb/buildinfo.chtml +++ b/www/kojiweb/buildinfo.chtml @@ -26,7 +26,7 @@ #if $build.draft