Update stats now that rfc board is no longer used
This commit is contained in:
parent
72c6a87b86
commit
9fe2645e3f
1 changed files with 5 additions and 5 deletions
|
@ -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(',');
|
||||
|
|
Loading…
Reference in a new issue