My shareable config for Renovate
Enable Renovate in your repo and just extends
in renovate.json
.
{
"extends": ["github>teppeis/renovate-config"] // or ["github>teppeis/renovate-config:anytime"]
}
Note: You don't have to do npm i -D @teppeis/renovate-config
.
Renovate fetches it from this GitHub repo automatically.
- Ignore
node_modules
,bower_components
, and various test/tests directories - Apply label
renovate
to PRs - Limit to maximum 10 concurrent Renovate PRs at any time
- Wait until branch tests have passed or failed before creating the PR
- If semantic commits detected, use semantic commit type
fix
for deps and peerDeps,chore
for all others - Use Asia/Tokyo timezone
- Group preset monorepo packages together
- Automerge patch upgrades if they pass tests
- Make no updates to branches when not scheduled
- Separate major, minor and patch releases of dependencies into individual branches/PRs
- Wait until the npm package is three days old before raising the update for stability
- Run
npm dedupe
after package-lock.json updates - Disable major upgrade of
@types/node
- Run following schedule: after 9pm and before 9am
- Upgrade semver ranges to latest version even if latest version satisfies existing range.
- Automerge minor updates in devDeps
- Run following schedule: before 3am on the first day of the month
- Pin docker images with sha256 digest
- Automerge with push the new commit directly to base branch (w/o PR)
- Use
ci(docker):
as semantic commit type - Run following schedule: before 9am on Friday
- Group all versions of Node.js images (
node
andcircleci/node
)
- disabled
{
"extends": [
":ignoreModulesAndTests",
":label(renovate)",
":prConcurrentLimit10",
":prNotPending",
":timezone(Asia/Tokyo)",
"group:monorepos"
],
"npm": {
"extends": [
":automergePatch",
":noUnscheduledUpdates",
":separatePatchReleases",
"npm:unpublishSafe",
"helpers:disableTypesNodeMajor",
"local>teppeis/renovate-config:semanticPrefixFixDepsPeerChoreOthers"
],
"schedule": ["after 9pm", "before 9am"],
"rangeStrategy": "bump",
"postUpdateOptions": ["npmDedupe"],
"lockFileMaintenance": {
"enabled": true,
"schedule": ["before 3am on the first day of the month"]
},
"packageRules": [
{
"description": ["automerge minor updates in devDeps"],
"automerge": true,
"matchUpdateTypes": ["minor"],
"matchDepTypes": ["devDependencies"]
},
{
"description": ["disable package.json > engines update"],
"matchDepTypes": ["engines"],
"enabled": false
},
{
"schedule": "at any time",
"minimumReleaseAge": "0",
"matchPackageNames": ["eslint-config-teppeis"]
}
]
},
"circleci": {
"enabled": true,
"automerge": true,
"automergeType": "branch",
"schedule": ["before 9am on Friday"],
"semanticCommitScope": "docker",
"semanticCommitType": "ci",
"pinDigests": true,
"packageRules": [
{
"groupName": "Node Docker digests in CircleCI",
"matchPackageNames": ["circleci/node", "node"]
}
]
}
}
- Run Renovate at any time
{
"extends": ["local>teppeis/renovate-config"],
"npm": {
"schedule": "at any time"
},
"lockFileMaintenance": {
"schedule": "at any time"
},
"circleci": {
"schedule": "at any time"
}
}
If semantic commits detected, use semantic commit type fix
for dependencies
and peerDependencies
, chore
for all others
"semanticPrefixFixDepsPeerChoreOthers": {
"packageRules": [
{
"matchPackagePatterns": [
"*"
],
"semanticCommitType": "chore"
},
{
"matchDepTypes": [
"dependencies",
"peerDependencies"
],
"semanticCommitType": "fix"
}
]
}
- Renovate Docs
- Configuration Options | Renovate Docs
- Default Presets | Renovate Docs
- Other shareable configs in GitHub
- RunKit + npm: later: later is a parser that used to parse
schedule
in renovate
MIT License: Teppei Sato <[email protected]>