Skip to content

Commit

Permalink
chore: すべての依存をRenovateの対象にする
Browse files Browse the repository at this point in the history
  • Loading branch information
qryxip committed Sep 26, 2024
1 parent 8d603d9 commit 4fd0fdc
Showing 1 changed file with 49 additions and 12 deletions.
61 changes: 49 additions & 12 deletions renovate.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,26 +4,63 @@
"config:recommended"
],
"timezone": "Asia/Tokyo",
"separateMajorMinor": false,
"dependencyDashboardApproval": true,
"packageRules": [
{
"groupSlug": "rust",
"groupName": "Rust",
"matchPackagePatterns": [
"^rust-lang/rust$"
]
"groupName": "major dependencies",
"matchUpdateTypes": [
"major"
],
"dependencyDashboardApproval": false
},
{
"groupName": "major dependencies",
"matchUpdateTypes": [
"minor"
],
"matchCurrentVersion": "0",
"dependencyDashboardApproval": false
},
{
"groupName": "major dependencies",
"matchUpdateTypes": [
"patch"
],
"matchCurrentVersion": "0.0",
"dependencyDashboardApproval": false
},
{
"groupName": "non-major dependencies",
"matchUpdateTypes": [
"minor"
],
"matchCurrentVersion": "!/^0\\./",
"dependencyDashboardApproval": false
},
{
"groupName": "non-major dependencies",
"matchUpdateTypes": [
"patch"
],
"matchCurrentVersion": "!/^0\\./0\\.",
"dependencyDashboardApproval": false
},
{
"groupSlug": "others",
"groupName": "Others",
"matchPackagePatterns": [
"*"
"matchDatasources": [
"github-runners"
],
"excludePackagePatterns": [
"^rust-lang/rust$"
"matchPackageNames": [
"windows",
"macos",
"ubuntu"
],
"dependencyDashboardApproval": true
"enabled": false
}
],
"cargo": {
"rangeStrategy": "bump"
},
"customManagers": [
{
"customType": "regex",
Expand Down

0 comments on commit 4fd0fdc

Please sign in to comment.