mirror of
https://github.com/renovatebot/renovate.git
synced 2025-01-12 15:06:27 +00:00
fix: don't pin monorepo groups (#11688)
This commit is contained in:
parent
5e2a615332
commit
050b6a9e59
2 changed files with 9 additions and 0 deletions
|
@ -601,6 +601,12 @@ Object {
|
|||
"monorepo:opentelemetry-js",
|
||||
],
|
||||
"groupName": "opentelemetry-js monorepo",
|
||||
"matchUpdateTypes": Array [
|
||||
"digest",
|
||||
"patch",
|
||||
"minor",
|
||||
"major",
|
||||
],
|
||||
},
|
||||
],
|
||||
}
|
||||
|
|
|
@ -1,6 +1,8 @@
|
|||
import type { Preset } from '../types';
|
||||
import * as monorepos from './monorepo';
|
||||
|
||||
const nonPinUpdateTypes = ['digest', 'patch', 'minor', 'major'];
|
||||
|
||||
const staticGroups = {
|
||||
all: {
|
||||
description: 'Group all updates together',
|
||||
|
@ -596,6 +598,7 @@ for (const monorepo of Object.keys(monorepos.presets)) {
|
|||
{
|
||||
description: `Group packages from ${monorepo} monorepo together`,
|
||||
extends: `monorepo:${monorepo}`,
|
||||
matchUpdateTypes: nonPinUpdateTypes,
|
||||
groupName: `${monorepo} monorepo`,
|
||||
},
|
||||
],
|
||||
|
|
Loading…
Reference in a new issue