diff options
author | 2021-09-02 09:40:03 -0700 | |
---|---|---|
committer | 2021-09-02 09:40:03 -0700 | |
commit | cd2578557cafad0a24cb860bdbf06b898c8ba47f (patch) | |
tree | ac35d233f6ee2cd64f1795976772aa3e2547d6b7 /scripts/stats/index.js | |
parent | 108bac706d1d002209f3913cc14fcc94c8d448de (diff) | |
download | astro-cd2578557cafad0a24cb860bdbf06b898c8ba47f.tar.gz astro-cd2578557cafad0a24cb860bdbf06b898c8ba47f.tar.zst astro-cd2578557cafad0a24cb860bdbf06b898c8ba47f.zip |
fix stat.csv bug
Diffstat (limited to 'scripts/stats/index.js')
-rw-r--r-- | scripts/stats/index.js | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/scripts/stats/index.js b/scripts/stats/index.js index e9ccbb939..9f1519de8 100644 --- a/scripts/stats/index.js +++ b/scripts/stats/index.js @@ -25,8 +25,7 @@ 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_NEEDS_DISCUSSION = 14946333; -const COLUMN_ID_RFCS_NEEDS_WORK = 14946353; +const COLUMN_ID_RFCS_IN_PROGRESS = 14946333; const COLUMN_ID_RFCS_ACCEPTED = 14946335; const COLUMN_ID_RFCS_PRIORITIZED = 14946454; @@ -105,10 +104,8 @@ export async function run() { (await countCards(COLUMN_ID_BUGS_NEEDS_TRIAGE)).length, // Bugs: Accepted (await countCards(COLUMN_ID_BUGS_ACCEPTED)).length + (await countCards(COLUMN_ID_BUGS_PRIORITIZED)).length, - // RFC: Needs Discussion - (await countCards(COLUMN_ID_RFCS_NEEDS_DISCUSSION)).length, - // RFC: Needs Work - (await countCards(COLUMN_ID_RFCS_NEEDS_WORK)).length, + // RFC: In Progress + (await countCards(COLUMN_ID_RFCS_IN_PROGRESS)).length, // RFC: Accepted (await countCards(COLUMN_ID_RFCS_ACCEPTED)).length + (await countCards(COLUMN_ID_RFCS_PRIORITIZED)).length, // Date (ISO) |