mirror of
https://github.com/prometheus/prometheus.git
synced 2025-12-18 21:26:32 -05:00
Add Renovate configuration (#16654)
* Add Renovate configuration --------- Signed-off-by: Arve Knudsen <arve.knudsen@gmail.com> Co-authored-by: Jan-Otto Kröpke <mail@jkroepke.de>
This commit is contained in:
parent
b2e7938e25
commit
673a182139
1 changed files with 62 additions and 0 deletions
62
renovate.json
Normal file
62
renovate.json
Normal file
|
|
@ -0,0 +1,62 @@
|
|||
{
|
||||
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
|
||||
"extends": [
|
||||
"config:recommended"
|
||||
],
|
||||
"separateMultipleMajor": true,
|
||||
"baseBranches": ["main"],
|
||||
"postUpdateOptions": [
|
||||
"gomodTidy",
|
||||
"gomodUpdateImportPaths"
|
||||
],
|
||||
"schedule": ["* 0-8 * * 1"],
|
||||
"timezone": "UTC",
|
||||
"packageRules": [
|
||||
{
|
||||
"description": "Don't update replace directives",
|
||||
"matchPackageNames": [
|
||||
"github.com/fsnotify/fsnotify"
|
||||
],
|
||||
"enabled": false
|
||||
},
|
||||
{
|
||||
"description": "Don't update prometheus-io namespace packages",
|
||||
"matchPackageNames": ["@prometheus-io/**"],
|
||||
"enabled": false
|
||||
},
|
||||
{
|
||||
"description": "Group Mantine UI dependencies",
|
||||
"matchFileNames": [
|
||||
"web/ui/mantine-ui/package.json"
|
||||
],
|
||||
"groupName": "Mantine UI",
|
||||
"matchUpdateTypes": ["minor", "patch"],
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"description": "Group React App dependencies",
|
||||
"matchFileNames": [
|
||||
"web/ui/react-app/package.json"
|
||||
],
|
||||
"groupName": "React App",
|
||||
"matchUpdateTypes": ["minor", "patch"],
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"description": "Group module dependencies",
|
||||
"matchFileNames": [
|
||||
"web/ui/module/**/package.json"
|
||||
],
|
||||
"groupName": "Modules",
|
||||
"matchUpdateTypes": ["minor", "patch"],
|
||||
"enabled": true
|
||||
}
|
||||
],
|
||||
"branchPrefix": "deps-update/",
|
||||
"vulnerabilityAlerts": {
|
||||
"enabled": true,
|
||||
"labels": ["security-update"]
|
||||
},
|
||||
"osvVulnerabilityAlerts": true,
|
||||
"dependencyDashboardApproval": false
|
||||
}
|
||||
Loading…
Reference in a new issue