From 05edafe54a0064147d4d7096919d927f934fb8ae Mon Sep 17 00:00:00 2001 From: kirjs Date: Thu, 2 Oct 2025 11:43:05 -0400 Subject: [PATCH] refactor(ng-dev): update links in caretaker selection prompt That would make it easier to pick the right caretaker --- ng-dev/caretaker/handoff/update-github-team.ts | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/ng-dev/caretaker/handoff/update-github-team.ts b/ng-dev/caretaker/handoff/update-github-team.ts index 3783921c2..1850d4fa6 100644 --- a/ng-dev/caretaker/handoff/update-github-team.ts +++ b/ng-dev/caretaker/handoff/update-github-team.ts @@ -42,7 +42,8 @@ export async function updateCaretakerTeamViaPrompt() { value: member, checked: current.has(member), })), - message: 'Select 2 caretakers for the upcoming rotation (primary and secondary):', + message: + 'Select 2 caretakers for the upcoming rotation (primary and secondary, http://go/ng-caretaker-schedule):', validate: (value) => { if (value.length !== 2) { return 'Please select exactly 2 caretakers for the upcoming rotation.'; @@ -63,7 +64,7 @@ export async function updateCaretakerTeamViaPrompt() { })); selectedEmea = await Prompt.select({ choices: emeaOptions, - message: 'Select EMEA caretaker', + message: 'Select EMEA caretaker (http://go/ng-caretaker-schedule-emea)', }); /** Whether the user positively confirmed the selected made. */