Skip to content

ornikar/renovate-presets

Repository files navigation

renovate-presets

Shared configuration for renovate github bot.

Installation in your repository

First, make sure renovate has access to the repository. Then, create the configuration file (don't merge the renovate PR adding this file) :

If it's an frontend app

renovate.json

{
  "extends": ["config:js-app", "github>ornikar/renovate-presets:frontend"]
}

If it's a frontend library or monorepo library

renovate.json

{
  "extends": ["config:js-lib", "github>ornikar/renovate-presets:frontend"]
}

If it's an backend app

renovate.json

{
    "extends": ["github>ornikar/renovate-presets:backend"]
}