Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/salimkayabasi/renovate

renovate preset
https://github.com/salimkayabasi/renovate

Last synced: 7 days ago
JSON representation

renovate preset

Awesome Lists containing this project

README

        

# Renovate Preset

## Usage

Simply create a file as `.github/renovate.json` and extend the configuration as shown below.

`renovate` will access this repository and use the config sets (`default.json`):
```json
{
"extends": [
"github>salimkayabasi/renovate"
]
}
```
More than one config preset can be referenced. This configuration will use `default.json` and `other-preset.json`:

```json
{
"extends": [
"github>salimkayabasi/renovate",
"github>salimkayabasi/renovate:other-preset"
]
}
```

## Config Preset Validation

After a config preset has been changed, it should be validated.

First install the dependencies:

```console
npm install
```

Then validate all config presets:

```console
.github/scripts/validate.sh
```