Skip to content
Snippets Groups Projects
Commit 372b4452 authored by Rhys Arkins's avatar Rhys Arkins
Browse files

refactor: set recreateClosed in group and lockFileMaintenance

parent 8dc7e475
No related branches found
No related tags found
No related merge requests found
...@@ -262,6 +262,7 @@ const options = [ ...@@ -262,6 +262,7 @@ const options = [
type: 'json', type: 'json',
default: { default: {
enabled: true, enabled: true,
recreateClosed: true,
branchName: 'renovate/lock-files', branchName: 'renovate/lock-files',
commitMessage: '{{semanticPrefix}}Update lock file', commitMessage: '{{semanticPrefix}}Update lock file',
prTitle: '{{semanticPrefix}}Lock file maintenance', prTitle: '{{semanticPrefix}}Lock file maintenance',
...@@ -301,6 +302,7 @@ const options = [ ...@@ -301,6 +302,7 @@ const options = [
description: 'Config if groupName is enabled', description: 'Config if groupName is enabled',
type: 'json', type: 'json',
default: { default: {
recreateClosed: true,
branchName: template('branchName', 'group'), branchName: template('branchName', 'group'),
commitMessage: template('commitMessage', 'group'), commitMessage: template('commitMessage', 'group'),
prTitle: template('prTitle', 'group'), prTitle: template('prTitle', 'group'),
......
...@@ -221,9 +221,8 @@ async function updateBranch(upgrades) { ...@@ -221,9 +221,8 @@ async function updateBranch(upgrades) {
try { try {
if ( if (
upgrade0.upgradeType !== 'lockFileMaintenance' && // Groups and lock file maintenance should set this to true
upgrade0.groupName === null && upgrade0.recreateClosed === false &&
!upgrade0.recreateClosed &&
(await upgrade0.api.checkForClosedPr(branchName, prTitle)) (await upgrade0.api.checkForClosedPr(branchName, prTitle))
) { ) {
logger.info(`Skipping branch as matching closed PR already existed`); logger.info(`Skipping branch as matching closed PR already existed`);
......
...@@ -7,6 +7,7 @@ Object { ...@@ -7,6 +7,7 @@ Object {
"enabled": true, "enabled": true,
"prBody": "This PR regenerates lock files to keep them up-to-date.", "prBody": "This PR regenerates lock files to keep them up-to-date.",
"prTitle": "{{semanticPrefix}}Lock file maintenance", "prTitle": "{{semanticPrefix}}Lock file maintenance",
"recreateClosed": true,
"schedule": "on monday", "schedule": "on monday",
} }
`; `;
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