aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--NEWS1
-rw-r--r--lib/MGA/Advisories.pm2
2 files changed, 2 insertions, 1 deletions
diff --git a/NEWS b/NEWS
index ce6a1a6..00adf2c 100644
--- a/NEWS
+++ b/NEWS
@@ -1,3 +1,4 @@
+- print out bug link when assigning IDs
- add support for posting to bugzilla during ID assignment if cross checks fail
- add publishall option to process all pending advisories
- fix bugnum regexp for '12345.mga4' type advisory names
diff --git a/lib/MGA/Advisories.pm b/lib/MGA/Advisories.pm
index 2d84aac..cd56b56 100644
--- a/lib/MGA/Advisories.pm
+++ b/lib/MGA/Advisories.pm
@@ -250,7 +250,7 @@ sub assign_id {
if (my $result = call_bz('Bug.get', {ids => [$bugnum]})) {
my $failed = 0;
my $bug = $result->{bugs}->[0];
- print "Found Bug: " . $bug->{summary} . "\n";
+ print "Found Bug: " . $bug->{summary} . "\n " . $config->{bugzilla_url} . "$bugnum\n";
my ($buffer, $msg);
print $msg = sprintf("%-40s", "Checking for QA validation keyword… ");