qa/bugzillaAutomation.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-)
New commits: commit 65fb511e746baa49e612d0bae80be8d994234558 Author: Xisco Fauli <[email protected]> AuthorDate: Thu Nov 27 12:37:50 2025 +0100 Commit: Xisco Fauli <[email protected]> CommitDate: Thu Nov 27 12:37:50 2025 +0100 bugzillaAutomation.py: also ping untouched UNCONFIRMED bugs Change-Id: I1ca5ec2204875beeaeee4aaa65937f86337f36a3 diff --git a/qa/bugzillaAutomation.py b/qa/bugzillaAutomation.py index 3fb8b98d..55cc3b40 100755 --- a/qa/bugzillaAutomation.py +++ b/qa/bugzillaAutomation.py @@ -160,7 +160,8 @@ def analyze_bugzilla(statList, bugzillaData, cfg): statList['tags']['removeObsolete'].add(comments[-1]["id"]) if datetime.datetime.strptime(row['last_change_time'], "%Y-%m-%dT%H:%M:%SZ") < cfg['untouchedPeriod'] and \ - rowStatus == 'NEW' and 'needsUXEval' not in rowKeywords and 'easyHack' not in rowKeywords and \ + (rowStatus == 'NEW' or rowStatus == 'UNCONFIRMED') and needsCommentTag not in row['whiteboard'] \ + and 'needsUXEval' not in rowKeywords and 'easyHack' not in rowKeywords and \ row['component'] != 'Documentation' and (row['product'] == 'LibreOffice' or \ row['product'] == 'Impress Remote') and row['severity'] != 'enhancement':
