From 80fecc340516b026fed5ad9844267b0af325d4fa Mon Sep 17 00:00:00 2001 From: Luke Heath Date: Fri, 25 Aug 2023 14:55:36 -0700 Subject: [PATCH] Adjust PR KPI script (#13463) --- website/scripts/get-bug-and-pr-report.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/website/scripts/get-bug-and-pr-report.js b/website/scripts/get-bug-and-pr-report.js index 7d9e2daf77..f4a509ace2 100644 --- a/website/scripts/get-bug-and-pr-report.js +++ b/website/scripts/get-bug-and-pr-report.js @@ -183,7 +183,7 @@ module.exports = { } // If not a draft, not a bot, not a PR labeled with #handbook // Track as a contributor PR and include in contributor PR KPI - if (!pullRequest.draft && pullRequest.user.type !== 'Bot' && !pullRequest.labels.some(label => label.name === '#handbook' || label.name === '#g-ceo')) { + if (!pullRequest.draft && pullRequest.user.type !== 'Bot' && !pullRequest.labels.some(label => label.name === '#handbook' || label.name === '#g-ceo' || label.name === ':improve documentation')) { daysSinceContributorPullRequestsWereOpened.push(timeOpenInDays); contributorPullRequests.push(pullRequest); }