Skip to content
Merged
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
8 changes: 7 additions & 1 deletion fastlane/lanes/localization.rb
Original file line number Diff line number Diff line change
Expand Up @@ -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
# -----------------------------------------------------------------------------------
Expand Down Expand Up @@ -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
Expand Down
Loading