Skip to content

Commit

Permalink
chore(deps): group renovate storybook updates and fix validation erro…
Browse files Browse the repository at this point in the history
…rs (#1159)

* add storybook packagerule

* remove preset

* fix renovate packagerule description type to array

* update managers config option to matchManagers
  • Loading branch information
minhlai authored Nov 21, 2023
1 parent 1801004 commit 700c7fb
Showing 1 changed file with 23 additions and 10 deletions.
33 changes: 23 additions & 10 deletions renovate.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,30 +23,36 @@
"matchUpdateTypes": ["patch", "minor", "pin", "digest"]
},
{
"description": "Group minor and patch updates into a single PR",
"description": ["Group minor and patch updates into a single PR"],
"groupName": "dependencies",
"managers": ["npm"],
"matchManagers": ["npm"],
"matchUpdateTypes": ["minor", "patch"]
},
{
"description": "Group minor and patch updates for devDependencies into a single PR",
"description": [
"Group minor and patch updates for devDependencies into a single PR"
],
"groupName": "devDependencies",
"managers": ["npm"],
"matchManagers": ["npm"],
"matchDepTypes": ["devDependencies"],
"matchUpdateTypes": ["minor", "patch"],
"labels": ["devDependencies"]
},
{
"description": "Group minor and patch updates for github-actions into a single PR",
"description": [
"Group minor and patch updates for github-actions into a single PR"
],
"groupName": "github-actions",
"managers": ["github-actions"],
"matchManagers": ["github-actions"],
"matchUpdateTypes": ["minor", "patch", "digest"],
"labels": ["github-actions"]
},
{
"description": "Group minor and patch updates for docker-compose files into a single PR",
"description": [
"Group minor and patch updates for docker-compose files into a single PR"
],
"groupName": "docker-compose",
"managers": ["docker-compose"],
"matchManagers": ["docker-compose"],
"matchUpdateTypes": ["minor", "patch"],
"labels": ["docker-compose"]
},
Expand All @@ -55,16 +61,23 @@
"enabled": false
},
{
"managers": ["dockerfile"],
"matchManagers": ["dockerfile"],
"matchUpdateTypes": ["major"],
"enabled": false
},
{
"description": "Group updates for OTEL into a single PR",
"description": ["Group updates for OTEL into a single PR"],
"groupName": "otel",
"matchUpdateTypes": ["minor", "patch"],
"matchPackagePrefixes": ["@opentelemetry"],
"labels": ["otel"]
},
{
"description": ["Group updates for Storybook into a single PR"],
"groupName": "storybook",
"matchUpdateTypes": ["minor", "patch"],
"matchPackagePrefixes": ["@storybook"],
"labels": ["storybook"]
}
],
"ignorePresets": [":prHourlyLimit2"]
Expand Down

0 comments on commit 700c7fb

Please sign in to comment.