From 0bdafaeb5f189d0ac8425859178d1cd8d912b3f4 Mon Sep 17 00:00:00 2001 From: Thomas Neidhart Date: Tue, 21 Nov 2023 20:49:06 +0100 Subject: [PATCH] Minor cleanup. --- lib/group-pull-requests.js | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/lib/group-pull-requests.js b/lib/group-pull-requests.js index 5281bafc5..f1d68b18c 100644 --- a/lib/group-pull-requests.js +++ b/lib/group-pull-requests.js @@ -39,8 +39,7 @@ const groupPullRequests = (pullRequests) => { for (const [key, value] of Object.entries(dependabotPRs)) { const item = value.pr - const joined = `Bump ${key} from ${value.from} to ${value.to}` - item.title = joined + item.title = `Bump ${key} from ${value.from} to ${value.to}` item.number = value.number result.push(item) }