-
Notifications
You must be signed in to change notification settings - Fork 119
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: すべての依存をRenovateの対象にする #839
Changes from 1 commit
90aaa65
ad28d7f
1656a41
23adf42
5847231
9d20232
927d714
a5ef979
432e572
322dcd7
392662b
cf101d9
10ba553
701d7fd
0185235
7574139
13904f6
3e47acf
79521af
84c641e
6b8b92d
53e35e5
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
This file was deleted.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,78 @@ | ||
{ | ||
"$schema": "https://docs.renovatebot.com/renovate-schema.json", | ||
"extends": [ | ||
"config:recommended" | ||
], | ||
"timezone": "Asia/Tokyo", | ||
"separateMajorMinor": false, | ||
Hiroshiba marked this conversation as resolved.
Show resolved
Hide resolved
|
||
"dependencyDashboardApproval": true, // 万が一`packageRules`の網羅性に穴ができた場合に備え | ||
"packageRules": [ | ||
{ | ||
qryxip marked this conversation as resolved.
Show resolved
Hide resolved
|
||
"groupName": "major dependencies", | ||
"matchUpdateTypes": [ | ||
"major" | ||
], | ||
"dependencyDashboardApproval": false | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 折角JSON5にしたので、末尾カンマ入れてもいいかも? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. どちらでも良さそう! どちらかというと入れた方がいい気がしますね! There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. いやこれよくわからないな。末尾カンマはOKなのかそうじゃないのか…??? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 検証したところ「arrayの末尾にあるobjectに対する末尾カンマ」( 基本JSON5にしつつGitHub App版には通るようにして、コメントで注意書きという形ですかね… There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 注意書きのコメントはこうなりました。 There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. えーと今 (09-28 19:00くらい)報告用の最小例を作ろうとしたら再現せず、このPRでの末尾カンマを復活させたらGitHub App版も普通に動きました… 何だかわからないけど一過性のものだった? |
||
}, | ||
{ | ||
"groupName": "major dependencies", | ||
"matchUpdateTypes": [ | ||
"minor" | ||
], | ||
"matchCurrentVersion": "/^v?0\\./", | ||
"dependencyDashboardApproval": false | ||
}, | ||
{ | ||
"groupName": "major dependencies", | ||
"matchUpdateTypes": [ | ||
"patch" | ||
], | ||
"matchCurrentVersion": "/^v?0\\.0\\./", | ||
"dependencyDashboardApproval": false | ||
}, | ||
{ | ||
qryxip marked this conversation as resolved.
Show resolved
Hide resolved
|
||
"groupName": "non-major dependencies", | ||
"matchUpdateTypes": [ | ||
"minor" | ||
], | ||
"matchCurrentVersion": "!/^v?0\\./", | ||
"dependencyDashboardApproval": false | ||
}, | ||
{ | ||
"groupName": "non-major dependencies", | ||
"matchUpdateTypes": [ | ||
"patch" | ||
], | ||
"matchCurrentVersion": "!/^v?0\\.0\\./", | ||
"dependencyDashboardApproval": false | ||
}, | ||
{ | ||
Hiroshiba marked this conversation as resolved.
Show resolved
Hide resolved
|
||
"matchDatasources": [ | ||
"github-runners" | ||
], | ||
"matchPackageNames": [ | ||
"windows", | ||
"macos", | ||
"ubuntu" | ||
], | ||
"enabled": false | ||
} | ||
], | ||
"cargo": { | ||
"rangeStrategy": "bump" | ||
}, | ||
"customManagers": [ | ||
{ | ||
"customType": "regex", | ||
"fileMatch": [ | ||
"^rust-toolchain$" | ||
], | ||
"matchStrings": [ | ||
"(?<currentValue>\\d+\\.\\d+\\.\\d+)" | ||
], | ||
"depNameTemplate": "Rust", | ||
"packageNameTemplate": "rust-lang/rust", | ||
"datasourceTemplate": "github-tags" | ||
} | ||
] | ||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
"Error executing gradle wrapper update command"のメッセージと共にgradle-wrapper.jarが消し飛ばされる件が気になるけど、どういう現象なのかまだわかってないし、Gradle自体のアップデートは別にやることで回避可能ではあるので除外設定はやらなくていいかなと思ってます。