Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/salimkayabasi/renovate
renovate preset
https://github.com/salimkayabasi/renovate
Last synced: 7 days ago
JSON representation
renovate preset
- Host: GitHub
- URL: https://github.com/salimkayabasi/renovate
- Owner: salimkayabasi
- Created: 2022-03-30T12:12:02.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2022-03-30T12:23:55.000Z (over 2 years ago)
- Last Synced: 2024-04-10T13:58:48.410Z (7 months ago)
- Language: Shell
- Size: 119 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
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
```