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
5 changes: 3 additions & 2 deletions ng-dev/caretaker/handoff/update-github-team.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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.';
Expand All @@ -63,7 +64,7 @@ export async function updateCaretakerTeamViaPrompt() {
}));
selectedEmea = await Prompt.select<string>({
choices: emeaOptions,
message: 'Select EMEA caretaker',
message: 'Select EMEA caretaker (http://go/ng-caretaker-schedule-emea)',
});

/** Whether the user positively confirmed the selected made. */
Expand Down
Loading