Skip to content

Commit

Permalink
fix(pr): add extra newline to fix artifacts extra table (#29615)
Browse files Browse the repository at this point in the history
  • Loading branch information
rarkins committed Jun 12, 2024
1 parent 4914b6c commit d62444b
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 0 deletions.
6 changes: 6 additions & 0 deletions lib/modules/manager/gomod/artifacts-extra.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -105,6 +105,8 @@ describe('modules/manager/gomod/artifacts-extra', () => {
'',
'',
'Details:',
'',
'',
'| **Package** | **Change** |',
'| :------------------- | :------------------- |',
'| `github.com/bar/bar` | `v2.0.0` -> `v2.2.2` |',
Expand All @@ -126,6 +128,8 @@ describe('modules/manager/gomod/artifacts-extra', () => {
'',
'',
'Details:',
'',
'',
'| **Package** | **Change** |',
'| :------------------- | :------------------- |',
'| `github.com/foo/foo` | `v1.0.0` -> `v1.1.1` |',
Expand All @@ -149,6 +153,8 @@ describe('modules/manager/gomod/artifacts-extra', () => {
'',
'',
'Details:',
'',
'',
'| **Package** | **Change** |',
'| :------------------- | :------------------- |',
'| `go` | `1.22.0` -> `1.22.2` |',
Expand Down
1 change: 1 addition & 0 deletions lib/modules/manager/gomod/artifacts-extra.ts
Original file line number Diff line number Diff line change
Expand Up @@ -110,6 +110,7 @@ export function getExtraDepsNotice(

noticeLines.push('\n');
noticeLines.push('Details:');
noticeLines.push('\n');
noticeLines.push(extraDepsTable(extraDeps));

return noticeLines.join('\n');
Expand Down

0 comments on commit d62444b

Please sign in to comment.