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(',');