mirror of
https://github.com/renovatebot/renovate.git
synced 2025-01-12 23:16:26 +00:00
fix(pr): remove double vv versions from pr body
Fixes #2283, Fixes #2119
This commit is contained in:
parent
c97c71a31d
commit
11d85f1ad5
1 changed files with 3 additions and 0 deletions
|
@ -175,6 +175,9 @@ async function ensurePr(prConfig) {
|
|||
}
|
||||
prBody = prBody.trim();
|
||||
|
||||
// Clean up double v's
|
||||
prBody = prBody.replace(/\bvv(\d)/g, 'v$1');
|
||||
|
||||
// Generic replacements/link-breakers
|
||||
|
||||
// Put a zero width space after every # followed by a digit
|
||||
|
|
Loading…
Reference in a new issue