Skip to content

Commit

Permalink
Bug 1930197 - Add an option (or config) to not set the qe-verify+ fla…
Browse files Browse the repository at this point in the history
…g when a GitHub push closes a bug in a given product
  • Loading branch information
dklawren committed Feb 5, 2025
1 parent 9caa744 commit 410a41b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Bugzilla/API/V1/Github.pm
Original file line number Diff line number Diff line change
Expand Up @@ -318,8 +318,8 @@ sub push_comment {
$set_all->{resolution} = 'FIXED';

# Update the qe-verify flag if not set and the bug was closed.
# Do not perform this change if Fenix or Focus product.
if ($bug->product ne 'Fenix' && $bug->product ne 'Focus') {
# Do not set the flag if the no-qe-verify parameter is true.
if (!$self->param('no-qe-verify')) {
my $found_flag;
foreach my $flag (@{$bug->flags}) {

Expand Down

0 comments on commit 410a41b

Please sign in to comment.