Skip to content

🔧 Configuration and common presets for Mend Renovate.

Notifications You must be signed in to change notification settings

jonasgeiler/renovate-config

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

51 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Renovate Config

This repository contains my configuration and common presets for Mend Renovate (aka. "Renovate Bot" or "Renovate") which is used in many of my repositories to manage dependencies and security updates. Renovate is very similar to Dependabot, but due to many additional features and easier config sharing I have decided to use it in favor of Dependabot.

Usage

The onboarding PR created by Renovate should already suggest a config file similar to the following:

{
  "$schema": "https://docs.renovatebot.com/renovate-schema.json",
  "extends": [
    "github>jonasgeiler/renovate-config"
  ]
}

If not, create it manually and store it under renovate.json or .github/renovate.json or one of the other supported locations.

Using the common presets

To use the presets included in this repository you will have to extend them like so:

{
  "$schema": "https://docs.renovatebot.com/renovate-schema.json",
  "extends": [
    "github>jonasgeiler/renovate-config",
    "github>jonasgeiler/renovate-config:<preset>"
  ]
}

For example:

{
  "$schema": "https://docs.renovatebot.com/renovate-schema.json",
  "extends": [
    "github>jonasgeiler/renovate-config",
    "github>jonasgeiler/renovate-config:yaml-version-comments"
  ]
}