Skip to content
Snippets Groups Projects
Unverified Commit d62444b9 authored by Rhys Arkins's avatar Rhys Arkins Committed by GitHub
Browse files

fix(pr): add extra newline to fix artifacts extra table (#29615)

parent 4914b6c2
No related branches found
No related tags found
No related merge requests found
...@@ -105,6 +105,8 @@ describe('modules/manager/gomod/artifacts-extra', () => { ...@@ -105,6 +105,8 @@ describe('modules/manager/gomod/artifacts-extra', () => {
'', '',
'', '',
'Details:', 'Details:',
'',
'',
'| **Package** | **Change** |', '| **Package** | **Change** |',
'| :------------------- | :------------------- |', '| :------------------- | :------------------- |',
'| `github.com/bar/bar` | `v2.0.0` -> `v2.2.2` |', '| `github.com/bar/bar` | `v2.0.0` -> `v2.2.2` |',
...@@ -126,6 +128,8 @@ describe('modules/manager/gomod/artifacts-extra', () => { ...@@ -126,6 +128,8 @@ describe('modules/manager/gomod/artifacts-extra', () => {
'', '',
'', '',
'Details:', 'Details:',
'',
'',
'| **Package** | **Change** |', '| **Package** | **Change** |',
'| :------------------- | :------------------- |', '| :------------------- | :------------------- |',
'| `github.com/foo/foo` | `v1.0.0` -> `v1.1.1` |', '| `github.com/foo/foo` | `v1.0.0` -> `v1.1.1` |',
...@@ -149,6 +153,8 @@ describe('modules/manager/gomod/artifacts-extra', () => { ...@@ -149,6 +153,8 @@ describe('modules/manager/gomod/artifacts-extra', () => {
'', '',
'', '',
'Details:', 'Details:',
'',
'',
'| **Package** | **Change** |', '| **Package** | **Change** |',
'| :------------------- | :------------------- |', '| :------------------- | :------------------- |',
'| `go` | `1.22.0` -> `1.22.2` |', '| `go` | `1.22.0` -> `1.22.2` |',
......
...@@ -110,6 +110,7 @@ export function getExtraDepsNotice( ...@@ -110,6 +110,7 @@ export function getExtraDepsNotice(
noticeLines.push('\n'); noticeLines.push('\n');
noticeLines.push('Details:'); noticeLines.push('Details:');
noticeLines.push('\n');
noticeLines.push(extraDepsTable(extraDeps)); noticeLines.push(extraDepsTable(extraDeps));
return noticeLines.join('\n'); return noticeLines.join('\n');
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment