Skip to content

Commit

Permalink
Refine "renovate.json" config file
Browse files Browse the repository at this point in the history
  • Loading branch information
regexident committed Jan 21, 2025
1 parent a6b0af0 commit 345812b
Showing 1 changed file with 24 additions and 28 deletions.
52 changes: 24 additions & 28 deletions renovate.json
Original file line number Diff line number Diff line change
@@ -1,30 +1,26 @@
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [
"config:recommended"
],
"packageRules": [
{
"groupName": "rust-analyzer dependencies",
"groupSlug": "rust-analyzer-dependencies",
"schedule": [
"before 2am on Tuesday"
],
"matchPackageNames": [
"/^ra_ap_/"
]
},
{
"allowedVersions": "!/^=/",
"groupName": "all other dependencies",
"groupSlug": "other-dependencies",
"schedule": [
"before 2am on Tuesday"
],
"matchPackageNames": [
"*",
"!/^ra_ap_/"
]
}
]
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": ["config:recommended"],
"rangeStrategy": "auto",
"schedule": ["before 2am on Tuesday"],
"packageRules": [
{
"groupName": "rust-analyzer dependencies",
"groupSlug": "rust-analyzer-dependencies",
"matchPackageNames": ["/^ra_ap_/"],
"rangeStrategy": "pin"
},
{
"allowedVersions": "!/^=/",
"groupName": "all other dependencies",
"groupSlug": "other-dependencies",
"matchPackageNames": ["*", "!/^ra_ap_/"]
},
{
"groupName": "github actions",
"groupSlug": "github-actions",
"matchDepTypes": ["action"],
"pinDigests": true
}
]
}

0 comments on commit 345812b

Please sign in to comment.