Skip to content

Commit 2e27ea0

Browse files
authored
Update inactive-collaborator-report.mjs
1 parent c58cb0f commit 2e27ea0

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

.github/scripts/inactive-collaborator-report.mjs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -56,9 +56,9 @@ async function parseCollaborators() {
5656
break;
5757
}
5858

59-
const match = line.match(/^\s*-\s*@\[([^\]]+)\]/);
59+
const match = line.match(/^\s*-\s*\[([^\]]+)\]/);
6060
if (match) {
61-
collaborators.push(match[1]);
61+
collaborators.push(match[1].slice(1));
6262
console.log(`Found collaborator: ${match[1]}`);
6363
}
6464
}

0 commit comments

Comments
 (0)