You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
`Found ${allIssuesIncludingRecentlyClosed.length} total issues (${openIssues.length} open), ${filteredIssues.length} match filters for file creation/update`,
349
-
);
350
-
constcurrentIssueNumbers=newSet(
351
-
filteredIssues.map((issue: {number: number})=>
352
-
issue.number.toString(),
353
-
),
354
-
);
350
+
this.noticeManager.debug(
351
+
`Found ${allIssuesIncludingRecentlyClosed.length} total issues (${openIssues.length} open), ${filteredIssues.length} match filters for file creation/update`,
352
+
);
353
+
constcurrentIssueNumbers=newSet(
354
+
filteredIssues.map((issue: {number: number})=>
355
+
issue.number.toString(),
356
+
),
357
+
);
355
358
356
-
awaitthis.fileManager.createIssueFiles(
357
-
repo,
358
-
filteredIssues,
359
-
allIssuesIncludingRecentlyClosed,
360
-
currentIssueNumbers,
361
-
);
359
+
awaitthis.fileManager.createIssueFiles(
360
+
repo,
361
+
filteredIssues,
362
+
allIssuesIncludingRecentlyClosed,
363
+
currentIssueNumbers,
364
+
);
362
365
363
-
this.noticeManager.debug(
364
-
`Processed ${filteredIssues.length} open issues for ${repo.repository}`,
365
-
);
366
+
this.noticeManager.debug(
367
+
`Processed ${filteredIssues.length} open issues for ${repo.repository}`,
368
+
);
369
+
}catch(repoError: unknown){
370
+
this.noticeManager.error(
371
+
`Error processing issues for repository ${repo.repository}`,
`Found ${allPullRequestsIncludingRecentlyClosed.length} total pull requests (${openPullRequests.length} open), ${filteredPRs.length} match filters for file creation/update`,
414
-
);
423
+
this.noticeManager.debug(
424
+
`Found ${allPullRequestsIncludingRecentlyClosed.length} total pull requests (${openPullRequests.length} open), ${filteredPRs.length} match filters for file creation/update`,
425
+
);
415
426
416
-
constcurrentPRNumbers=newSet(
417
-
filteredPRs.map((pr: {number: number})=>
418
-
pr.number.toString(),
419
-
),
420
-
);
427
+
constcurrentPRNumbers=newSet(
428
+
filteredPRs.map((pr: {number: number})=>
429
+
pr.number.toString(),
430
+
),
431
+
);
421
432
422
-
awaitthis.fileManager.createPullRequestFiles(
423
-
repo,
424
-
filteredPRs,
425
-
allPullRequestsIncludingRecentlyClosed,
426
-
currentPRNumbers,
427
-
);
433
+
awaitthis.fileManager.createPullRequestFiles(
434
+
repo,
435
+
filteredPRs,
436
+
allPullRequestsIncludingRecentlyClosed,
437
+
currentPRNumbers,
438
+
);
428
439
429
-
this.noticeManager.debug(
430
-
`Processed ${filteredPRs.length} open pull requests for ${repo.repository}`,
431
-
);
440
+
this.noticeManager.debug(
441
+
`Processed ${filteredPRs.length} open pull requests for ${repo.repository}`,
442
+
);
443
+
}catch(repoError: unknown){
444
+
this.noticeManager.error(
445
+
`Error processing pull requests for repository ${repo.repository}`,
0 commit comments