forked from jenkinsci/jenkins
-
Notifications
You must be signed in to change notification settings - Fork 0
/
renovate.json
37 lines (37 loc) · 969 Bytes
/
renovate.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [
"config:base",
":disableDependencyDashboard",
":semanticCommitsDisabled"
],
"enabledManagers": ["npm", "regex"],
"packageRules": [
{
"matchDatasources": ["npm"],
"addLabels": ["javascript"],
"stabilityDays": 3,
"reviewers": ["team:sig-ux"]
},
{
"matchPackageNames": ["bootstrap"],
"allowedVersions": "<=3.4.1",
"description": "https://issues.jenkins.io/browse/JENKINS-69409",
"enabled": false
},
{
"matchPackageNames": ["node"],
"allowedVersions": "/16.[0-9]+.[0-9]+(.[0-9]+)?$/"
}
],
"regexManagers": [
{
"fileMatch": ["war/pom.xml"],
"matchStrings": ["<node.version>(?<currentValue>.*?)</node.version>"],
"depNameTemplate": "node",
"datasourceTemplate": "npm"
}
],
"labels": ["dependencies", "skip-changelog"],
"rebaseWhen": "conflicted"
}