-
Notifications
You must be signed in to change notification settings - Fork 1
/
renovate.json
37 lines (37 loc) · 1.12 KB
/
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:recommended",
":separateMultipleMajorReleases",
":enableVulnerabilityAlerts",
"schedule:daily",
"customManagers:biomeVersions",
"group:atlaskit"
],
"labels": ["dependency"],
"prConcurrentLimit": 5,
"rangeStrategy": "pin",
"packageRules": [
{
"matchDepTypes": ["engines"],
"rangeStrategy": "auto"
},
{
"description": "Rule to fetch changelog for Atlassian atlaskit packages",
"extends": ["packages:atlaskit"],
"sourceUrl": "https://bitbucket.org/atlassian/atlassian-frontend-mirror",
"sourceDirectory": "design-system/{{ lookup (split packageName '/') 1 }}"
}
],
"customManagers": [
{
"customType": "regex",
"datasourceTemplate": "github-tags",
"depNameTemplate": "setchy/atlassify",
"versioningTemplate": "loose",
"description": "Update sonar.projectVersion variables in sonar-project.properties",
"fileMatch": ["sonar-project.properties"],
"matchStrings": ["\\s?sonar.projectVersion=(?<currentValue>.+?)\\s"]
}
]
}