Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions bugbot/rules/moved_to_performance.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@


class MovedToPerformance(BzCleaner):
"""Add a comment to bugs that recently moved to the performance component"""
"""Add a comment to bugs that recently moved to the Performance: General component"""

def __init__(self, recent_date_weeks: int = 26):
"""Constructor
Expand Down Expand Up @@ -146,7 +146,7 @@ def get_bz_params(self, date):
"v1": "Core",
"f2": "component",
"o2": "equals",
"v2": "Performance",
"v2": "Performance: General",
"f3": "component",
"o3": "changedafter",
"v3": "-7d",
Expand Down
2 changes: 1 addition & 1 deletion configs/rules.json
Original file line number Diff line number Diff line change
Expand Up @@ -261,7 +261,7 @@
"Firefox::Untriaged",
"Core::JavaScript Engine",
"DevTools::Accessibility Tools",
"Core::Performance",
"Core::Performance: General",
"Core::Privacy: Anti-Tracking",
"Firefox::Extension Compatibility",
"Core::DOM: Bindings (WebIDL)",
Expand Down
2 changes: 1 addition & 1 deletion scripts/cron_run_weekdays.sh
Original file line number Diff line number Diff line change
Expand Up @@ -197,7 +197,7 @@ python -m bugbot.rules.regression_new_set_nightly_affected --production
# Suggest increasing the severity of performance-impacting bugs
python -m bugbot.rules.severity_high_performance_impact --production

# Request potential missing info when a bug is moved to Core::Performance
# Request potential missing info when a bug is moved to Core::Performance: General
python -m bugbot.rules.moved_to_performance --production

source ./scripts/cron_common_end.sh
2 changes: 1 addition & 1 deletion templates/moved_to_performance.html
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<p>
The following {{ plural('bug was', data, pword='bugs were') }} moved into the Core::Performance component; a comment to request more information was added:
The following {{ plural('bug was', data, pword='bugs were') }} moved into the Core::Performance: General component; a comment to request more information was added:
</p>
<table {{ table_attrs }}>
<thead>
Expand Down
2 changes: 1 addition & 1 deletion templates/moved_to_performance_needinfo.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
This bug was moved into the Performance component.
This bug was moved into the Performance: General component.

:{{ nickname }}, could you make sure the following information is on this bug?

Expand Down