From 9fe2645e3f556620c165324872d0ff12c5151d87 Mon Sep 17 00:00:00 2001 From: "Fred K. Schott" Date: Tue, 14 Dec 2021 08:52:04 -0800 Subject: [PATCH] Update stats now that rfc board is no longer used --- scripts/stats/index.js | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/scripts/stats/index.js b/scripts/stats/index.js index 2b81f7a8f..fdfde042e 100644 --- a/scripts/stats/index.js +++ b/scripts/stats/index.js @@ -25,9 +25,9 @@ const repo = 'astro'; const COLUMN_ID_BUGS_NEEDS_TRIAGE = 14724521; const COLUMN_ID_BUGS_ACCEPTED = 14724515; const COLUMN_ID_BUGS_PRIORITIZED = 14946516; -const COLUMN_ID_RFCS_IN_PROGRESS = 14946333; -const COLUMN_ID_RFCS_ACCEPTED = 14946335; -const COLUMN_ID_RFCS_PRIORITIZED = 14946454; +// const COLUMN_ID_RFCS_IN_PROGRESS = 14946333; +// const COLUMN_ID_RFCS_ACCEPTED = 14946335; +// const COLUMN_ID_RFCS_PRIORITIZED = 14946454; // CREATE LOCAL COPIES OF DATA (Useful for debugging locally) // Command: @@ -105,9 +105,9 @@ export async function run() { // Bugs: Accepted (await countCards(COLUMN_ID_BUGS_ACCEPTED)).length + (await countCards(COLUMN_ID_BUGS_PRIORITIZED)).length, // RFC: In Progress - (await countCards(COLUMN_ID_RFCS_IN_PROGRESS)).length, + 0, // (await countCards(COLUMN_ID_RFCS_IN_PROGRESS)).length, // RFC: Accepted - (await countCards(COLUMN_ID_RFCS_ACCEPTED)).length + (await countCards(COLUMN_ID_RFCS_PRIORITIZED)).length, + 0, // (await countCards(COLUMN_ID_RFCS_ACCEPTED)).length + (await countCards(COLUMN_ID_RFCS_PRIORITIZED)).length, // Date (ISO) `"${new Date().toISOString()}"`, ].join(',');