mirror of
https://github.com/renovatebot/renovate.git
synced 2025-01-12 23:16:26 +00:00
fix(pr): add extra newline to fix artifacts extra table (#29615)
This commit is contained in:
parent
4914b6c26c
commit
d62444b97d
2 changed files with 7 additions and 0 deletions
|
@ -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');
|
||||
|
|
Loading…
Reference in a new issue