forked from jenkinsci/jenkins
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrenovate.json
42 lines (42 loc) · 930 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
38
39
40
41
42
{
"extends": [
"config:base",
":disableDependencyDashboard",
":semanticCommitsDisabled"
],
"enabledManagers": [
"npm",
"regex"
],
"packageRules": [
{
"matchDatasources": ["npm"],
"addLabels": ["javascript"],
"stabilityDays": 3,
"reviewers": ["team:sig-ux"]
},
{
"matchPackageNames": ["handlebars"],
"allowedVersions": "<=3.0.8",
"description": "https://issues.jenkins.io/browse/JENKINS-68926",
"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"
}