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

fix: don’t group lockFileMaintenance update (#890)

Setting lockFileMaintenance.groupName =  null will prevent the case where the user configures a repository groupName like “all” and then that group inherits the schedule of lock file maintenance. Instead, there will be renovate/all and renovate/lock-file-maintenance.

Fixes #885
parent 88f9bb40
No related branches found
No related tags found
No related merge requests found
...@@ -507,6 +507,7 @@ const options = [ ...@@ -507,6 +507,7 @@ const options = [
prTitle: template('prTitle', 'lock-file-maintenance'), prTitle: template('prTitle', 'lock-file-maintenance'),
prBody: template('prBody', 'lock-file-maintenance'), prBody: template('prBody', 'lock-file-maintenance'),
schedule: ['before 5am on monday'], schedule: ['before 5am on monday'],
groupName: null,
}, },
cli: false, cli: false,
mergeable: true, mergeable: true,
......
...@@ -5,6 +5,7 @@ Object { ...@@ -5,6 +5,7 @@ Object {
"branchName": "{{branchPrefix}}lock-file-maintenance", "branchName": "{{branchPrefix}}lock-file-maintenance",
"commitMessage": "Update lock file", "commitMessage": "Update lock file",
"enabled": true, "enabled": true,
"groupName": null,
"prBody": "This {{#if isGitHub}}Pull{{else}}Merge{{/if}} Request updates \`package.json\` lock files to use the latest dependency versions. "prBody": "This {{#if isGitHub}}Pull{{else}}Merge{{/if}} Request updates \`package.json\` lock files to use the latest dependency versions.
{{#if schedule}} {{#if schedule}}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment