@@ -92,7 +92,7 @@ export class PullRequestGenerator {
92
92
if ( githubActionsCount > 0 )
93
93
body += `| 🚀 GitHub Actions | ${ githubActionsCount } |\n`
94
94
if ( composerCount > 0 )
95
- body += `| 🎼 Composer Packages | ${ composerCount } |\n`
95
+ body += `| 🐘 Composer Packages | ${ composerCount } |\n`
96
96
body += `| **Total** | **${ group . updates . length } ** |\n\n`
97
97
98
98
// Separate updates by type
@@ -143,6 +143,7 @@ export class PullRequestGenerator {
143
143
// Package.json updates table (with full badges)
144
144
if ( packageJsonUpdates . length > 0 ) {
145
145
body += `## 📦 npm Dependencies\n\n`
146
+ body += `\n\n`
146
147
if ( packageJsonUpdates . length === 1 ) {
147
148
body += `*${ packageJsonUpdates . length } package will be updated*\n\n`
148
149
}
@@ -226,6 +227,7 @@ export class PullRequestGenerator {
226
227
}
227
228
228
229
body += `## 🐘 PHP/Composer Dependencies\n\n`
230
+ body += `\n\n`
229
231
if ( uniqueComposerUpdates . length === 1 ) {
230
232
body += `*${ uniqueComposerUpdates . length } package will be updated*\n\n`
231
233
}
@@ -278,6 +280,7 @@ export class PullRequestGenerator {
278
280
// Dependency files table (enhanced with more information)
279
281
if ( dependencyFileUpdates . length > 0 ) {
280
282
body += `## 🔧 System Dependencies\n\n`
283
+ body += `\n\n`
281
284
282
285
const uniqueFiles = [ ...new Set ( dependencyFileUpdates . map ( u => u . file ) ) ]
283
286
if ( dependencyFileUpdates . length === 1 ) {
@@ -287,8 +290,8 @@ export class PullRequestGenerator {
287
290
body += `*${ dependencyFileUpdates . length } packages will be updated across ${ uniqueFiles . length } file(s): ${ uniqueFiles . map ( f => `\`${ f . split ( '/' ) . pop ( ) } \`` ) . join ( ', ' ) } *\n\n`
288
291
}
289
292
290
- body += `| Package | Change | Type | File | Links | \n`
291
- body += `|---|---|---|---|---| \n`
293
+ body += `| Package | Change | Type | File |\n`
294
+ body += `|---|---|---|---|\n`
292
295
293
296
for ( const update of dependencyFileUpdates ) {
294
297
// Handle special case: bun.sh -> bun.com
@@ -311,14 +314,7 @@ export class PullRequestGenerator {
311
314
? `[\`${ fileName } \`](https://github.com/${ this . config . repository . owner } /${ this . config . repository . name } /blob/main/${ update . file } )`
312
315
: `\`${ fileName } \``
313
316
314
- // Enhanced links column
315
- let linksCell = `📦 [pkgx](${ packageUrl } )`
316
- if ( update . name . includes ( '.org' ) || update . name . includes ( '.net' ) || update . name . includes ( '.com' ) ) {
317
- const domain = update . name . split ( '/' ) [ 0 ] || update . name
318
- linksCell += ` | 🌐 [${ domain } ](https://${ domain } )`
319
- }
320
-
321
- body += `| ${ packageCell } | ${ change } | ${ typeEmoji } ${ updateType } | ${ fileCell } | ${ linksCell } |\n`
317
+ body += `| ${ packageCell } | ${ change } | ${ typeEmoji } ${ updateType } | ${ fileCell } |\n`
322
318
}
323
319
324
320
body += `\n`
@@ -327,6 +323,7 @@ export class PullRequestGenerator {
327
323
// GitHub Actions table (enhanced with more information)
328
324
if ( uniqueGithubActionsUpdates . length > 0 ) {
329
325
body += `## 🚀 GitHub Actions\n\n`
326
+ body += `\n\n`
330
327
331
328
if ( uniqueGithubActionsUpdates . length === 1 ) {
332
329
body += `*${ uniqueGithubActionsUpdates . length } action will be updated*\n\n`
@@ -335,8 +332,8 @@ export class PullRequestGenerator {
335
332
body += `*${ uniqueGithubActionsUpdates . length } actions will be updated*\n\n`
336
333
}
337
334
338
- body += `| Action | Change | Type | Files | Links | \n`
339
- body += `|---|---|---|---|---| \n`
335
+ body += `| Action | Change | Type | Files |\n`
336
+ body += `|---|---|---|---|\n`
340
337
341
338
for ( const update of uniqueGithubActionsUpdates ) {
342
339
// Generate action link
@@ -363,12 +360,7 @@ export class PullRequestGenerator {
363
360
: `\`${ fileName } \``
364
361
} ) ( )
365
362
366
- // Enhanced links column
367
- const releasesUrl = `https://github.com/${ update . name } /releases`
368
- const compareUrl = `https://github.com/${ update . name } /compare/${ update . currentVersion } ...${ update . newVersion } `
369
- const linksCell = `📋 [releases](${ releasesUrl } ) | 📊 [compare](${ compareUrl } )`
370
-
371
- body += `| ${ actionCell } | ${ change } | ${ typeEmoji } ${ updateType } | ${ fileLinks } | ${ linksCell } |\n`
363
+ body += `| ${ actionCell } | ${ change } | ${ typeEmoji } ${ updateType } | ${ fileLinks } |\n`
372
364
}
373
365
374
366
body += `\n`
0 commit comments