From 6cf8bd501204898a554872f42a126bc36d7aa56b Mon Sep 17 00:00:00 2001 From: Victor Alfaro Date: Sat, 21 Sep 2024 13:17:36 -0600 Subject: [PATCH] Fixing report seated PRs --- .github/workflows/cicd_scheduled_notify-seated-prs.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/cicd_scheduled_notify-seated-prs.yml b/.github/workflows/cicd_scheduled_notify-seated-prs.yml index c444d5a05c0a..1fb43fad7136 100644 --- a/.github/workflows/cicd_scheduled_notify-seated-prs.yml +++ b/.github/workflows/cicd_scheduled_notify-seated-prs.yml @@ -126,7 +126,7 @@ jobs: }; const prs = await fetchOpenPrs(); - prs.forEach(pr => console.log(`[${pr.number}] -> [${pr.user.login}, ${dateFomat(new Date(Date.parse(pr.created_at)))}]`)); + prs.forEach(pr => console.log(`[${pr.number}] -> [${pr.user.login}, ${dateFormat(new Date(Date.parse(pr.created_at)))}]`)); console.log(`PRs size: [${prs.length}]`); prs.forEach(handlePr);