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
body+=`*${dependencyFileUpdates.length} package will be updated in \`${uniqueFiles[0].split('/').pop()}\`*\n\n`
283
+
}elseif(dependencyFileUpdates.length>1){
277
284
body+=`*${dependencyFileUpdates.length} packages will be updated across ${uniqueFiles.length} file(s): ${uniqueFiles.map(f=>`\`${f.split('/').pop()}\``).join(', ')}*\n\n`
278
285
}
279
286
@@ -318,7 +325,9 @@ export class PullRequestGenerator {
318
325
if(uniqueGithubActionsUpdates.length>0){
319
326
body+=`## 🚀 GitHub Actions\n\n`
320
327
321
-
if(uniqueGithubActionsUpdates.length>1){
328
+
if(uniqueGithubActionsUpdates.length===1){
329
+
body+=`*${uniqueGithubActionsUpdates.length} action will be updated*\n\n`
330
+
}elseif(uniqueGithubActionsUpdates.length>1){
322
331
body+=`*${uniqueGithubActionsUpdates.length} actions will be updated*\n\n`
0 commit comments