🔨
RenovateでNext.jsのcanaryリリースに追従する
これで出来ました。
"packageRules": [
{
"matchDatasources": ["npm"],
"matchPackageNames": ["next"],
"followTag": "canary"
},
]
"allowedVersions": "/canary/"
とか"ignoreUnstable": false
も試したんですが、期待通り動いたのは"followTag": "canary"
だけでした。
実際に来たPRがこちら。
ついでにreactもcanaryリリースに追従する
"packageRules": [
{
"matchDatasources": ["npm"],
"matchPackageNames": ["react", "react-dom"],
"followTag": "canary",
"extends": ["schedule:weekly"]
}
]
こちらはschedule:weekly
(before 4am on Monday
)で指定しているのでまだPRが来ていない。
公式ドキュメント
Discussion