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