Skip to content

Commit

Permalink
lint
Browse files Browse the repository at this point in the history
  • Loading branch information
erickzhao committed Dec 5, 2023
1 parent 3a15b06 commit f50fe16
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/remind.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ async function main() {
});

// silence during quiet period
if (items.length && (new Date()).getMonth() < 11) {
if (items.length && new Date().getMonth() < 11) {
const text =
`:blob-wave: *Reminder:* the <${searchUrl}|following PRs> are awaiting API review.\n` +
items
Expand Down

0 comments on commit f50fe16

Please sign in to comment.