From 3206b097f1045c9cb5dd836fbb5d6fbf2291ddb7 Mon Sep 17 00:00:00 2001 From: Oguz Kocer Date: Thu, 13 Aug 2026 16:35:13 -0400 Subject: [PATCH] Request a review from wpmobile-team on the translations PR The daily `translations/daily-update` PR opens with no reviewer, so it sits unnoticed. Ask the `wpmobile-team` GitHub team to review it; the team's code review assignment setting narrows that to a single member. Changes: - Add `TRANSLATIONS_REVIEWER_TEAM` constant - Pass `team_reviewers` to `find_or_create_pull_request` in `update_translations` --- fastlane/lanes/localization.rb | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/fastlane/lanes/localization.rb b/fastlane/lanes/localization.rb index 5c034a8bdfa3..4f3f796c4423 100644 --- a/fastlane/lanes/localization.rb +++ b/fastlane/lanes/localization.rb @@ -432,6 +432,11 @@ TRANSLATIONS_SYNC_BRANCH = 'translations/daily-update' + # Slug (no org prefix) of the GitHub team asked to review the translations PR. The team's + # "Code review assignments" setting picks a single member, so the request lands on one person + # rather than the whole team. + TRANSLATIONS_REVIEWER_TEAM = 'wpmobile-team' + ##################################################################################### # update_translations # ----------------------------------------------------------------------------------- @@ -491,7 +496,8 @@ BODY head: TRANSLATIONS_SYNC_BRANCH, base: DEFAULT_BRANCH, - labels: ['Localization'] + labels: ['Localization'], + team_reviewers: [TRANSLATIONS_REVIEWER_TEAM] ) UI.success("Translations PR: #{pr_url}") end