-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathrenovate.json
More file actions
67 lines (67 loc) · 2.25 KB
/
Copy pathrenovate.json
File metadata and controls
67 lines (67 loc) · 2.25 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
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": ["config:recommended"],
"enabledManagers": ["github-actions", "custom.regex"],
"dependencyDashboard": true,
"labels": ["dependencies"],
"platformAutomerge": false,
"prHourlyLimit": 2,
"prConcurrentLimit": 10,
"rebaseWhen": "conflicted",
"customManagers": [
{
"customType": "regex",
"managerFilePatterns": ["/^action\\.yml$/"],
"matchStrings": [
"# renovate: datasource=(?<datasource>\\S+) depName=(?<depName>\\S+)\\s+default: '(?<currentValue>[^']+)'"
],
"versioningTemplate": "semver"
},
{
"customType": "regex",
"managerFilePatterns": ["/^entrypoint\\.sh$/"],
"matchStrings": [
"# renovate: datasource=(?<datasource>\\S+) depName=(?<depName>\\S+)\\s+image_version=\"\\$\\{INPUT_IMAGE_VERSION:-(?<currentValue>[^}]+)\\}\""
],
"versioningTemplate": "semver"
},
{
"customType": "regex",
"managerFilePatterns": ["/^README\\.md$/"],
"matchStrings": [
"ghcr\\.io/icoretech/codex-docker:(?<currentValue>\\d+\\.\\d+\\.\\d+)",
"\\| `image_version` \\| No \\| `(?<currentValue>\\d+\\.\\d+\\.\\d+)` \\|"
],
"depNameTemplate": "ghcr.io/icoretech/codex-docker",
"datasourceTemplate": "docker",
"versioningTemplate": "semver"
}
],
"packageRules": [
{
"description": "Keep codex-docker default image pins together",
"matchManagers": ["custom.regex"],
"matchPackageNames": ["ghcr.io/icoretech/codex-docker"],
"groupName": "codex-docker image",
"groupSlug": "codex-docker-image",
"semanticCommits": "enabled",
"semanticCommitType": "fix",
"commitMessagePrefix": "fix(deps):",
"commitMessageAction": "update",
"commitMessageTopic": "codex-docker image",
"commitMessageExtra": "to {{prettyNewVersion}}"
},
{
"description": "Group GitHub Actions updates",
"matchManagers": ["github-actions"],
"groupName": "github actions",
"groupSlug": "github-actions"
},
{
"description": "Automerge non-major updates after checks pass",
"matchUpdateTypes": ["minor", "patch", "pin", "digest"],
"automerge": true,
"automergeType": "pr"
}
]
}