We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dcbd43c commit 5483367Copy full SHA for 5483367
.github/scripts/pr_list.mjs
@@ -12,7 +12,7 @@ const historyFilePath = path.join(__dirname, '..', '..', 'HISTORY.md');
12
* @returns {string[]}
13
*/
14
function parsePRList(history) {
15
- const prRegexp = /node-mongodb-native\/issues\/(?<prNum>\d+)\)/iu;
+ const prRegexp = /js-bson\/issues\/(?<prNum>\d+)\)/iu;
16
return history
17
.split('\n')
18
.map(line => prRegexp.exec(line)?.groups?.prNum ?? '')
0 commit comments