We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5439879 commit a3c1609Copy full SHA for a3c1609
stats.py
@@ -467,9 +467,9 @@ def get_review_groups(sessions: Sessions) -> list[dict]:
467
"""Returns a dict of group names with the members of each group"""
468
groups = []
469
470
- # Get the project objects that end in '-reviewers'.
+ # Get the project objects that do not start with 'bmo-'.
471
projects = sessions.projects.query(ProjectDb.Project).filter(
472
- ProjectDb.Project.name.endswith("-reviewers")
+ ~ProjectDb.Project.name.startswith("bmo-")
473
)
474
475
logging.info(f"Found {projects.count()} review groups for processing.")
0 commit comments