-
Notifications
You must be signed in to change notification settings - Fork 1k
Expand file tree
/
Copy pathrenovate.json5
More file actions
104 lines (104 loc) · 3.54 KB
/
renovate.json5
File metadata and controls
104 lines (104 loc) · 3.54 KB
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
{
"rebaseWhen": "behind-base-branch",
"baseBranches": [
"master",
"main",
"release/2025.1",
"release/2025.4"
],
"rollbackPrs": true,
"labels": ["docker-release"],
"assignees": [
"jCOTINEAU",
"carminevassallo",
"davividal"
],
"automerge": false,
"includePaths": [
"commercial-editions/**",
"community-build/Dockerfile",
".github/github_env.yaml",
".cirrus/tasks.yml"
],
"enabledManagers": [
"custom.regex"
],
"packageRules": [
{
"matchManagers": ["custom.regex"],
"groupName": "docker-sonarqube-server-releases",
"groupSlug": "docker-sonarqube-server-releases",
"matchDepNames": ["sonarqube-server"],
"labels": ["sonarqube-server"]
},
{
"matchManagers": ["custom.regex"],
"groupName": "docker-sonarqube-community-build-releases",
"groupSlug": "docker-sonarqube-community-build-releases",
"matchDepNames": ["sonarqube-community-build"],
"labels": ["sonarqube-community-build"]
},
{
"matchManagers": ["custom.regex"],
"matchBaseBranches": ["release/2025.1"],
"matchUpdateTypes": ["major","minor"],
"enabled": "false"
},
{
"matchManagers": ["custom.regex"],
"matchBaseBranches": ["release/2025.4"],
"matchUpdateTypes": ["major","minor"],
"enabled": "false"
},
],
"customManagers": [
{
"customType": "regex",
"managerFilePatterns": ["commercial-editions/**"],
"datasourceTemplate":"github-releases",
"depNameTemplate": "sonarqube-server",
"versioningTemplate": "regex:^(?<major>\\d+)\\.(?<minor>\\d+)\\.(?<patch>\\d+)\\.(?<build>\\d+)",
"extractVersionTemplate": "^sqs-(?<version>.*)$",
"packageNameTemplate": "SonarSource/sonar-enterprise",
"matchStrings": [
"ARG SONARQUBE_VERSION=(?<currentValue>.+)"
]
},
{
"customType": "regex",
"managerFilePatterns": [".github/github_env.yaml",".cirrus/tasks.yml"],
"datasourceTemplate":"github-releases",
"depNameTemplate": "sonarqube-server",
"versioningTemplate": "regex:^(?<major>\\d+)\\.(?<minor>\\d+)\\.(?<patch>\\d+)",
"extractVersionTemplate": "^sqs-(?<version>\\d+\\.\\d+\\.\\d+)\\.\\d+$",
"packageNameTemplate": "SonarSource/sonar-enterprise",
"matchStrings": [
"current: \"(?<currentValue>.+)\"",
"CURRENT_VERSION: (?<currentValue>.+)"
]
},
{
"customType": "regex",
"managerFilePatterns": ["community-build/Dockerfile"],
"datasourceTemplate":"github-releases",
"depNameTemplate": "sonarqube-community-build",
"versioningTemplate": "regex:^(?<major>\\d+)\\.(?<minor>\\d+)\\.(?<patch>\\d+)\\.(?<build>\\d+)",
"packageNameTemplate": "SonarSource/sonarqube",
"matchStrings": [
"ARG SONARQUBE_VERSION=(?<currentValue>.+)"
]
},
{
"customType": "regex",
"managerFilePatterns": [".github/github_env.yaml",".cirrus/tasks.yml"],
"datasourceTemplate":"github-releases",
"depNameTemplate": "sonarqube-community-build",
"versioningTemplate": "regex:^(?<major>\\d+)\\.(?<minor>\\d+)\\.(?<patch>\\d+)\\.(?<build>\\d+)",
"packageNameTemplate": "SonarSource/sonarqube",
"matchStrings": [
"community_build: \"(?<currentValue>.+)\"",
"COMMUNITY_BUILD_VERSION: (?<currentValue>.+)"
]
}
]
}