Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(deps): group renovate storybook updates and fix validation errors #1159

Merged
merged 5 commits into from
Nov 21, 2023
Merged
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
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
Loading