https://github.com/hpprc/renovate-config
🧹personal renovate config
https://github.com/hpprc/renovate-config
renovate renovate-config
Last synced: 2 months ago
JSON representation
🧹personal renovate config
- Host: GitHub
- URL: https://github.com/hpprc/renovate-config
- Owner: hppRC
- Created: 2020-04-12T06:31:25.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2020-05-22T00:38:07.000Z (over 5 years ago)
- Last Synced: 2025-10-04T07:40:02.102Z (2 months ago)
- Topics: renovate, renovate-config
- Homepage: https://www.npmjs.com/package/@hpprc/renovate-config
- Size: 84 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# **renovate config**
個人用のrenovateの設定を一括管理するためのアレ
[npm](https://www.npmjs.com/package/@hpprc/renovate-config)
## config list
### default
standard config for active repositories
```json
{
"default": {
"extends": [
"config:base"
]
},
}
```
### maintenance
- automerge for devDependencies
- skip ci for Netlify build
- Netlify ignore any commits whose commit message starts with "[skip ci]"
- this config force Netlify to avoid triggering builds
```json
{
"maintenance": {
"extends": [
"config:base"
],
"packageRules": [
{
"depTypeList": [
"devDependencies"
],
"automerge": true,
"commitMessagePrefix": "[skip ci]"
}
]
}
}
```