-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathrenovate.json
More file actions
38 lines (38 loc) · 1.19 KB
/
renovate.json
File metadata and controls
38 lines (38 loc) · 1.19 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
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [
"config:recommended"
],
"prHourlyLimit": 10,
"repositories": [
"stackitcloud/stackit-sdk-generator"
],
"enabledManagers": [
"github-actions",
"custom.regex"
],
"customManagers": [
{
"customType": "regex",
"managerFilePatterns": [
"/(^|\\/)generate-sdk\\.sh$/"
],
"matchStrings": [
"# Renovate: datasource=(?<datasource>.*?) depName=(?<depName>.*?) versioning=(?<versioning>.*?)?\\s+GENERATOR_VERSION=\"?(?<currentValue>.*?)\""
]
},
{
"customType": "regex",
"managerFilePatterns": [
"/(^|\\/)go\\.mod\\.mustache$/"
],
"matchStrings": [
"github.com\/stackitcloud\/stackit-sdk-go\/core (?<currentValue>.*?)\\s"
],
"datasourceTemplate": "go",
"depNameTemplate": "github.com/stackitcloud/stackit-sdk-go",
"packageNameTemplate": "github.com/stackitcloud/stackit-sdk-go/core",
"versioningTemplate": "semver"
}
]
}