Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 5 additions & 4 deletions renovate-presets/default.json5
Original file line number Diff line number Diff line change
Expand Up @@ -45,10 +45,11 @@
postUpgradeTasks: {
commands: [
'git restore .npmrc || true', // In case `.npmrc` avoid a hard error.
'pnpm install --frozen-lockfile',
'pnpm bazel mod deps --lockfile_mode=update',
'bazel mod deps --lockfile_mode=update',
],
executionMode: 'branch',
// This is theory should be `branch` but in some cases this is causing the command not to
// run when in the same branch there are mixtures of update types by different managers.
executionMode: 'update',
},
matchManagers: ['bazel', 'bazel-module', 'bazelisk'],
},
Expand Down Expand Up @@ -103,7 +104,7 @@
followTag: 'next',
minimumReleaseAge: null,
separateMajorMinor: false,
schedule: ['at any time'],
schedule: ['0 */2 * * *'], // Every two hours.
matchPackageNames: [
'@angular-devkit/**',
'@angular/**',
Expand Down
Loading