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

fix: filter out disabled updates

parent ee3f7f71
No related branches found
Tags 12.22.6
No related merge requests found
...@@ -55,5 +55,7 @@ function flattenUpdates(config, packageFiles) { ...@@ -55,5 +55,7 @@ function flattenUpdates(config, packageFiles) {
updates.push(lockFileConfig); updates.push(lockFileConfig);
} }
} }
return updates.map(update => filterConfig(update, 'branch')); return updates
.filter(update => update.enabled)
.map(update => filterConfig(update, 'branch'));
} }
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