chore(repo): format issue report date a bit nicer (#15439)

This commit is contained in:
Craigory Coppola 2023-03-03 17:09:10 -05:00 committed by GitHub
parent e773bdbb79
commit 9b5b83c3f4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -51,7 +51,8 @@ export async function scrapeIssues(): Promise<ReportData> {
totalBugCount: totalBugs,
totalIssueCount: total,
untriagedIssueCount,
collectedDate: new Date().toISOString(),
// Format is like: Mar 03 2023
collectedDate: new Date().toDateString().split(' ').slice(1).join(' '),
};
}