Skip to content

Commit

Permalink
SarahFrench OOO 20-23 Apr inclusive (GoogleCloudPlatform#10489)
Browse files Browse the repository at this point in the history
  • Loading branch information
SarahFrench authored Apr 20, 2024
1 parent fcde618 commit 7ed3dd1
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .ci/magician/github/membership.go
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,7 @@ var (
// This is for reviewers who are "on vacation": will not receive new review assignments but will still receive re-requests for assigned PRs.
// User can specify the time zone like this, and following the example below:
pdtLoc, _ = time.LoadLocation("America/Los_Angeles")
bstLoc, _ = time.LoadLocation("Europe/London")
onVacationReviewers = []onVacationReviewer{
// Example: taking vacation from 2024-03-28 to 2024-04-02 in pdt time zone.
// both ends are inclusive:
Expand All @@ -62,8 +63,13 @@ var (
endDate: newDate(2024, 6, 14, pdtLoc),
},
{
id: "SarahFrench",
startDate: newDate(2024, 4, 20, bstLoc),
endDate: newDate(2024, 4, 23, bstLoc),
},
{
id: "slevenick",
startDate: newDate(2024, 4, 20, pdtLoc),
startDate: newDate(2024, 4, 20, pdtLoc),
endDate: newDate(2024, 4, 27, pdtLoc),
},
}
Expand Down

0 comments on commit 7ed3dd1

Please sign in to comment.