oxc/.github/renovate.json
2024-01-23 14:38:15 +08:00

35 lines
843 B
JSON

{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"ignorePaths": [
"crates/oxc_linter/fixtures/**"
],
"packageRules": [
{
"groupName": "github-actions",
"matchManagers": ["github-actions"],
"schedule": ["on monday"],
"assignees": ["@Boshen"]
},
{
"groupName": "cargo",
"matchManagers": ["cargo"],
"schedule": ["on monday"],
"assignees": ["@Boshen"],
"ignoreDeps": ["textwrap"]
},
{
"groupName": "website",
"includePaths": ["website/**"],
"matchManagers": ["npm"],
"schedule": ["on monday"],
"assignees": ["@Boshen"]
},
{
"groupName": "vscode",
"includePaths": ["editors/vscode/**"],
"matchManagers": ["npm"],
"schedule": ["on monday"],
"assignees": ["@Boshen"]
}
]
}