Skip to content

Commit

Permalink
add prBlockedBy
Browse files Browse the repository at this point in the history
  • Loading branch information
PhilipAbed committed May 17, 2023
1 parent ea9bc6b commit 7ba4534
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion lib/workers/repository/finalize/repository-statistics.ts
Expand Up @@ -69,7 +69,7 @@ function filterDependencyDashboardData(
const branchesFiltered: Partial<BranchCache>[] = [];
for (const branch of branches) {
const upgradesFiltered: Partial<BranchUpgradeCache>[] = [];
const { branchName, prNo, prTitle, result, upgrades } = branch;
const { branchName, prNo, prTitle, result, upgrades, prBlockedBy } = branch;

for (const upgrade of upgrades ?? []) {
const {
Expand Down Expand Up @@ -107,6 +107,7 @@ function filterDependencyDashboardData(
prNo,
prTitle,
result,
prBlockedBy,
upgrades: upgradesFiltered,
};
branchesFiltered.push(filteredBranch);
Expand Down

0 comments on commit 7ba4534

Please sign in to comment.