forked from AmadeusITGroup/AgnosUI
-
Notifications
You must be signed in to change notification settings - Fork 0
/
renovate.json
48 lines (48 loc) · 1.47 KB
/
renovate.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"repositories": ["AmadeusITGroup/AgnosUI"],
"platform": "github",
"extends": ["config:recommended", ":dependencyDashboard", "group:allNonMajor"],
"ignorePresets": [":prHourlyLimit2", ":prConcurrentLimit10"],
"schedule": "every weekend",
"rangeStrategy": "bump",
"packageRules": [
{
"matchPackageNames": ["typescript"],
"groupName": "Typescript dependencies",
"groupSlug": "typescript-dependencies"
},
{
"matchPackagePatterns": ["^."],
"postUpgradeTasks": {
"commands": ["rm package-lock.json", "npm install"],
"executionMode": "branch",
"fileFilters": ["**"]
}
},
{
"matchPackageNames": ["@angular/core"],
"postUpgradeTasks": {
"commands": [
"npm install",
"cd angular && npm run ng update {{{depName}}} --from={{{currentVersion}}} --to={{{newVersion}}} --migrate-only --allow-dirty --force"
],
"executionMode": "branch",
"fileFilters": ["**"]
}
},
{
"matchPackagePatterns": ["^@angular", "^ng-packagr", "^zone.js"],
"groupName": "Angular dependencies",
"groupSlug": "angular-dependencies"
},
{
"matchFileNames": [".github/workflows/*.+(yaml|yml)"],
"groupName": "Github Actions",
"groupSlug": "github-actions"
}
],
"allowedPostUpgradeCommands": ["^npm install$", "^cd angular && npm run ng update .*", "^rm package-lock.json$"],
"lockFileMaintenance": {"enabled": true, "schedule": ["every weekend"]},
"skipInstalls": false
}