diff options
-rw-r--r-- | scripts/triage_owners_csv.pl | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/scripts/triage_owners_csv.pl b/scripts/triage_owners_csv.pl index af8a491a8..214b7b04f 100644 --- a/scripts/triage_owners_csv.pl +++ b/scripts/triage_owners_csv.pl @@ -23,6 +23,9 @@ use Text::CSV_XS; Bugzilla->usage_mode(USAGE_MODE_CMDLINE); +my $auto_user = Bugzilla::User->check({ name => 'automation@bmo.tld' }); +Bugzilla->set_user($auto_user); + my $dbh = Bugzilla->dbh; my $filename = shift; |