-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathrenovate.json
More file actions
57 lines (57 loc) · 2.02 KB
/
renovate.json
File metadata and controls
57 lines (57 loc) · 2.02 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
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [
"config:recommended",
"helpers:pinGitHubActionDigests"
],
"labels": ["dependencies"],
"postUpdateOptions": ["gomodTidy"],
"customManagers": [
{
"customType": "regex",
"description": "Update npm package versions in npx YAML configurations",
"managerFilePatterns": [
"/^npx/.*/spec\\.ya?ml$/"
],
"matchStrings": [
"spec:\\s*\\n\\s*package:\\s*[\"']?(?<depName>[^\"'\\n]+?)\\s*[\"']?\\s*(?:#.*)?\\n\\s*version:\\s*[\"']?(?<currentValue>[\\d\\.\\w-]+)[\"']?\\s*(?:#.*)?"
],
"datasourceTemplate": "npm"
},
{
"customType": "regex",
"description": "Update Python package versions in uvx YAML configurations",
"managerFilePatterns": [
"/^uvx/.*/spec\\.ya?ml$/"
],
"matchStrings": [
"spec:\\s*\\n\\s*package:\\s*[\"']?(?<depName>[^\"'\\n]+?)\\s*[\"']?\\s*(?:#.*)?\\n\\s*version:\\s*[\"']?(?<currentValue>[\\d\\.\\w-]+)[\"']?\\s*(?:#.*)?"
],
"datasourceTemplate": "pypi"
},
{
"customType": "regex",
"description": "Update Go package versions in go YAML configurations",
"managerFilePatterns": [
"/^go/.*/spec\\.ya?ml$/"
],
"matchStrings": [
"spec:\\s*\\n\\s*package:\\s*[\"']?(?<depName>[^\"'\\n]+?)\\s*[\"']?\\s*(?:#.*)?\\n\\s*version:\\s*[\"']?(?<currentValue>[\\d\\.\\w-]+)[\"']?\\s*(?:#.*)?"
],
"datasourceTemplate": "go"
},
{
"customType": "regex",
"description": "Update skill versions from git commit references",
"managerFilePatterns": [
"/^skills/.*/spec\\.ya?ml$/"
],
"matchStrings": [
"spec:\\s*\\n\\s*repository:\\s*[\"']?https://github\\.com/(?<depName>[^\"'\\s]+?)(?:\\.git)?\\s*[\"']?\\s*(?:#.*)?\\n\\s*ref:\\s*[\"']?(?<currentDigest>[0-9a-f]{40})[\"']?"
],
"currentValueTemplate": "main",
"datasourceTemplate": "git-refs",
"packageNameTemplate": "https://github.com/{{{depName}}}"
}
]
}