1
0
mirror of https://github.com/Unleash/unleash.git synced 2025-01-25 00:07:47 +01:00
unleash.unleash/renovate.json
Mert Şişmanoğlu 99f28dbccd
chore(renovate): Update renovate configuration json file (#9016)
## About the changes

The last Renovate configuration was done 10 months ago and Renovate
changed the configuration schema during this time. I made some schema
changes for you.

Added global 'dependencies' label to all Renovate PRs, which is also used for Dependabot.

### Changes list

- Add JSON schema | A JSON best practice for working with structured
datas.
- Migrate deprecated packageRules to new versions
- Rename `stabilityDays` to `minimumReleaseAge` | This is basically a
modern version of #2768
  - Rename `matchPackagePatterns` to `matchPackageNames`
- Add 'dependencies' label to renovate PRs
2025-01-14 09:57:50 +01:00

18 lines
487 B
JSON

{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": ["config:base"],
"timezone": "Europe/Madrid",
"schedule": ["after 7pm every weekday", "before 5am every weekday"],
"packageRules": [
{
"matchUpdateTypes": ["minor", "patch"],
"matchPackageNames": ["*"],
"automerge": true,
"minimumReleaseAge": "7 days",
"internalChecksFilter": "strict"
}
],
"ignoreDeps": ["react-router-dom"],
"labels": ["dependencies"]
}