diff options
author | 2021-12-14 08:52:04 -0800 | |
---|---|---|
committer | 2021-12-14 08:52:04 -0800 | |
commit | 9fe2645e3f556620c165324872d0ff12c5151d87 (patch) | |
tree | 965398d2f30cbf9b926212b63e45519fe0ea28bf /scripts/stats/index.js | |
parent | 72c6a87b8602d1f56522fddd20d0b6f36b0c5047 (diff) | |
download | astro-9fe2645e3f556620c165324872d0ff12c5151d87.tar.gz astro-9fe2645e3f556620c165324872d0ff12c5151d87.tar.zst astro-9fe2645e3f556620c165324872d0ff12c5151d87.zip |
Update stats now that rfc board is no longer used
Diffstat (limited to 'scripts/stats/index.js')
-rw-r--r-- | scripts/stats/index.js | 10 |
1 files 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(','); |