https://github.com/stefee/renovate-config
https://github.com/stefee/renovate-config
Last synced: 4 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/stefee/renovate-config
- Owner: stefee
- Created: 2021-02-08T13:18:06.000Z (over 5 years ago)
- Default Branch: main
- Last Pushed: 2021-11-04T15:04:47.000Z (over 4 years ago)
- Last Synced: 2025-12-22T19:58:41.084Z (6 months ago)
- Size: 58.6 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# renovate-config
This is a collection of [GitHub-hosted presets](https://docs.renovatebot.com/config-presets/#github-hosted-presets) for Renovate dependency bot.
## Usage
In your `renovate.json`:
```
{
"extends": [
"github>stefee/renovate-config"
]
}
```
If you would like to [auto-merge](https://docs.renovatebot.com/configuration-options/#automerge) minor upgrades, here is a recommended configuration for doing that:
```
{
"extends": [
"github>stefee/renovate-config",
"github>stefee/renovate-config:automergeMinor",
"github>stefee/renovate-config:dontAutomergeNode",
"github>stefee/renovate-config:dontAutomergeTestFrameworks"
]
}
```
## Semantic Presets
A description for each preset can be found in the JSON file for the preset stored in this repo.
* [`github>stefee/renovate-config:groupNodeJs`](./groupNodeJs.json)
* [`github>stefee/renovate-config:automergeMinor`](./automergeMinor.json)
* [`github>stefee/renovate-config:dontAutomergeNode`](./dontAutomergeNode.json)
* [`github>stefee/renovate-config:dontAutomergeTestFrameworks`](./dontAutomergeTestFrameworks.json)