File tree 1 file changed +11
-3
lines changed 1 file changed +11
-3
lines changed Original file line number Diff line number Diff line change 1
1
{
2
2
$schema : 'https://docs.renovatebot.com/renovate-schema.json' ,
3
3
extends : [ 'github>netlify/renovate-config:default' ] ,
4
- ignorePresets : [ ':prHourlyLimit2' ] ,
4
+ ignorePresets : [
5
+ ':prHourlyLimit2' ,
6
+ // We creating our own package rule that bundles those two together, so let's avoid separate ones
7
+ 'monorepo:angular' ,
8
+ 'monorepo:angular-cli' ,
9
+ ] ,
10
+ prHourlyLimit : 0 ,
5
11
semanticCommits : true ,
6
12
// The config we're extending ignores test dirs, but we want to bump some fixture deps
7
13
ignorePaths : [ '**/node_modules/**' ] ,
16
22
} ,
17
23
{
18
24
description : 'Stable & unstable Angular bumps in test fixtures' ,
25
+ groupName : 'Angular packages' ,
19
26
matchFileNames : [ 'tests/**/fixtures/**/package.json' ] ,
20
- // See https://docs.renovatebot.com/presets-monorepo/#monorepoangular.
21
- matchSourceUrls : [ 'https://github.com/angular/angular' ] ,
27
+ // See https://docs.renovatebot.com/presets-monorepo/#monorepoangular and https://docs.renovatebot.com/presets-monorepo/#monorepoangular-cli.
28
+ // packages from both monorepos should be bumped together
29
+ matchSourceUrls : [ 'https://github.com/angular/angular' , 'https://github.com/angular/angular-cli' ] ,
22
30
// Override the schedule to get immediate PRs.
23
31
schedule : null ,
24
32
// Apply a unique label so we can trigger additional workflows for these PRs.
You can’t perform that action at this time.
0 commit comments