Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(dashboard): mend app dashboard was not showing links for closed-ignored PRs #31308

Merged
merged 34 commits into from
Sep 10, 2024
Merged
Changes from all commits
Commits
Show all changes
34 commits
Select commit Hold shift + click to select a range
0c8f60f
fix(worker): don't coerce valid semver versions
viceice Jun 5, 2023
a41862e
Merge branch 'main' of https://github.com/renovateBot/renovate
PhilipAbed Jul 12, 2023
ebdbd00
Merge branch 'main' of https://github.com/renovateBot/renovate
PhilipAbed Jul 24, 2023
f963606
Merge branch 'main' of https://github.com/renovateBot/renovate
PhilipAbed Aug 2, 2023
89fa0b8
Merge branch 'main' of https://github.com/renovateBot/renovate
PhilipAbed Aug 3, 2023
b7837af
Merge branch 'main' of https://github.com/renovateBot/renovate
PhilipAbed Aug 8, 2023
4634ff3
Merge branch 'main' of https://github.com/renovateBot/renovate
PhilipAbed Aug 9, 2023
aeba91b
Merge branch 'main' of https://github.com/renovateBot/renovate
PhilipAbed Aug 15, 2023
3d430bf
Merge branch 'main' of https://github.com/renovateBot/renovate
PhilipAbed Aug 16, 2023
5b94272
Merge branch 'main' of https://github.com/renovateBot/renovate
PhilipAbed Aug 21, 2023
ca8bce3
Merge branch 'main' of https://github.com/renovateBot/renovate
PhilipAbed Aug 21, 2023
64fe0cf
Merge branch 'main' of https://github.com/renovateBot/renovate
PhilipAbed Sep 14, 2023
5a8aed2
Merge branch 'main' of https://github.com/renovateBot/renovate
PhilipAbed Oct 26, 2023
d7ded40
Merge branch 'main' of https://github.com/renovateBot/renovate
PhilipAbed Nov 1, 2023
602a2df
Merge branch 'main' of https://github.com/renovateBot/renovate
PhilipAbed Nov 16, 2023
a002cbb
Merge branch 'main' of https://github.com/renovateBot/renovate
PhilipAbed Nov 21, 2023
0864d5e
Merge branch 'main' of https://github.com/renovateBot/renovate
PhilipAbed Feb 4, 2024
9c4c2c1
Merge branch 'main' of https://github.com/renovateBot/renovate
PhilipAbed Mar 3, 2024
6fa5fc3
Merge branch 'main' of https://github.com/renovateBot/renovate
PhilipAbed Mar 14, 2024
e9f6bb7
Merge branch 'main' of https://github.com/renovateBot/renovate
PhilipAbed Apr 2, 2024
a6d9d2f
Merge branch 'main' of https://github.com/renovateBot/renovate
PhilipAbed May 7, 2024
7d0e609
Merge branch 'main' of https://github.com/renovateBot/renovate
PhilipAbed May 15, 2024
cad83ed
Merge branch 'main' of https://github.com/renovateBot/renovate
PhilipAbed May 22, 2024
0743eda
Merge branch 'main' of https://github.com/renovateBot/renovate
PhilipAbed May 22, 2024
0ab6813
Merge branch 'main' of https://github.com/renovateBot/renovate
PhilipAbed Jun 26, 2024
a477e91
Merge branch 'main' of https://github.com/renovateBot/renovate
PhilipAbed Jun 27, 2024
7fa2fff
Merge branch 'main' of https://github.com/renovateBot/renovate
PhilipAbed Jul 14, 2024
9b1e584
Merge branch 'main' of https://github.com/renovateBot/renovate
PhilipAbed Jul 17, 2024
1707e7e
Merge branch 'main' of https://github.com/renovateBot/renovate
PhilipAbed Jul 28, 2024
7a6109e
Merge branch 'main' of https://github.com/renovateBot/renovate
PhilipAbed Aug 13, 2024
f0bf475
Merge branch 'main' of https://github.com/renovateBot/renovate
PhilipAbed Aug 25, 2024
d527d0b
Merge branch 'main' of https://github.com/renovateBot/renovate
PhilipAbed Sep 10, 2024
c85e176
align mend app with renovate dashboard, missing info about closed PR.
PhilipAbed Sep 10, 2024
4863d8b
align mend app with renovate dashboard, missing info about closed PR.
PhilipAbed Sep 10, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions lib/workers/repository/cache.ts
Original file line number Diff line number Diff line change
Expand Up @@ -92,6 +92,9 @@ async function generateBranchCache(
baseBranch,
baseBranchSha,
) ?? undefined;
} else if (baseBranchSha && !branchSha && branch.prNo) {
// if branch was deleted/ PR exists and ignored
prNo = branch.prNo;
}

const automerge = !!branch.automerge;
Expand Down