-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrenovate.json
More file actions
82 lines (82 loc) · 2.84 KB
/
renovate.json
File metadata and controls
82 lines (82 loc) · 2.84 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
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [
"config:recommended",
":combinePatchMinorReleases",
"schedule:earlyMondays",
"helpers:pinGitHubActionDigests",
"github>JohT/code-graph-analysis-pipeline//renovate-presets/code-graph-analysis-workflow-latest-digest.json5",
":automergeRequireAllStatusChecks",
":automergeDigest"
],
"customManagers": [
{
"description": "Update AXON_FRAMEWORK_VERSION environment variable in GitHub Actions",
"customType": "regex",
"fileMatch": [
"(^|/)(workflow-templates|\\.(?:github|gitea|forgejo)/(?:workflows|actions))/.+\\.ya?ml$",
"(^|/)action\\.ya?ml$"
],
"matchStrings": [
"AXON_FRAMEWORK_VERSION:\\s+?(?<currentValue>.*?)\\s+"
],
"depNameTemplate": "AxonFramework/AxonFramework",
"datasourceTemplate": "github-releases",
"extractVersionTemplate": "^axon-?(?<version>.*?)$"
},
{
"description": "Update REACT_ROUTER_VERSION environment variable in GitHub Actions",
"customType": "regex",
"fileMatch": [
"(^|/)(workflow-templates|\\.(?:github|gitea|forgejo)/(?:workflows|actions))/.+\\.ya?ml$",
"(^|/)action\\.ya?ml$"
],
"matchStrings": [
"REACT_ROUTER_VERSION:\\s+?(?<currentValue>.*?)\\s+"
],
"depNameTemplate": "remix-run/react-router",
"datasourceTemplate": "github-releases",
"extractVersionTemplate": "^react-router@?(?<version>.*?)$"
},
{
"description": "Update AxonFramework analysis result links in README.md",
"customType": "regex",
"fileMatch": [
"README.md"
],
"matchStrings": [
"\\/AxonFramework-?(?<currentValue>.*?)\\/"
],
"depNameTemplate": "AxonFramework/AxonFramework",
"datasourceTemplate": "github-releases",
"extractVersionTemplate": "^axon-?(?<version>.*?)$"
},
{
"description": "Update npx command package versions",
"customType": "regex",
"fileMatch": [
"(^|/)(workflow-templates|\\.(?:github|gitea|forgejo)/(?:workflows|actions))/.+\\.ya?ml$",
"(^|/)action\\.ya?ml$"
],
"matchStrings": [
"npx\\s+--yes\\s+(--package\\s+)?(-p\\s+)?(?<depName>@?[^@]+)@(?<currentValue>.*?)($|\\s+)"
],
"datasourceTemplate": "npm"
},
{
"description": "Update java version in GitHub Action environment variable",
"customType": "regex",
"datasourceTemplate": "java-version",
"depNameTemplate": "java",
"packageNameTemplate": "",
"fileMatch": [
"(^|/)(workflow-templates|\\.(?:github|gitea|forgejo)/(?:workflows|actions))/.+\\.ya?ml$",
"(^|/)action\\.ya?ml$"
],
"matchStrings": [
"JAVA_VERSION:\\s+?(?<currentValue>.*?)\\s+"
],
"extractVersionTemplate": "^(?<version>\\d+).*$"
}
]
}