-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdefault.json
More file actions
127 lines (127 loc) · 3.75 KB
/
Copy pathdefault.json
File metadata and controls
127 lines (127 loc) · 3.75 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
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"customManagers": [
{
"customType": "regex",
"datasourceTemplate": "github-releases",
"depNameTemplate": "jdx/hk",
"description": "Keep the hk version embedded in .pkl package URLs in sync with the hk release (Renovate's mise manager bumps mise.toml, but not the pkl URLs)",
"extractVersionTemplate": "^v?(?<version>.+)$",
"managerFilePatterns": [
"/\\.pkl$/"
],
"matchStrings": [
"releases/download/v(?<currentValue>[^/]+?)/",
"hk@(?<currentValue>[^#\"]+?)#"
],
"versioningTemplate": "semver"
},
{
"customType": "regex",
"datasourceTemplate": "github-releases",
"depNameTemplate": "hk-config",
"description": "Keep the hk-config version embedded in consumer .pkl package URLs in sync with the hk-config@<version> GitHub release (tooling itself imports Defaults.pkl by relative path, so this only fires in consumer repos)",
"extractVersionTemplate": "^hk-config@(?<version>.+)$",
"managerFilePatterns": [
"/\\.pkl$/"
],
"matchStrings": [
"releases/download/hk-config@(?<currentValue>[^/]+?)/",
"/hk-config@(?<currentValue>[^/#\"]+?)#"
],
"packageNameTemplate": "gtbuchanan/tooling",
"versioningTemplate": "semver"
}
],
"description": [
"Shared Renovate config for @gtbuchanan repositories"
],
"extends": [
"config:recommended"
],
"labels": [
"dependencies"
],
"minimumReleaseAge": "3 days",
"osvVulnerabilityAlerts": true,
"packageRules": [
{
"description": "Group hk updates (mise tool + .pkl package URLs share one release)",
"groupName": "hk",
"matchSourceUrls": [
"https://github.com/jdx/hk"
]
},
{
"description": "Group pkl updates (mise tool + .chezmoidata version comment share one apple/pkl release)",
"groupName": "pkl",
"matchSourceUrls": [
"https://github.com/apple/pkl"
]
},
{
"description": "Group pnpm updates (the mise tool and package.json's packageManager field pin the same release)",
"groupName": "pnpm",
"matchSourceUrls": [
"https://github.com/pnpm/pnpm"
]
},
{
"description": "Group playwright-cli monorepo",
"groupName": "playwright-cli monorepo",
"matchSourceUrls": [
"https://github.com/microsoft/playwright-cli"
]
},
{
"allowedVersions": "!/^v?0\\.180\\.0$/",
"description": "Ignore microsoft/playwright-cli v0.180.0 mistag (release body says v0.0.62)",
"matchDatasources": [
"github-releases"
],
"matchPackageNames": [
"microsoft/playwright-cli"
]
},
{
"description": "Restrict noisy pre-commit hook updates to bi-monthly",
"matchSourceUrls": [
"https://github.com/renovatebot/pre-commit-hooks"
],
"minimumReleaseAge": "0 days",
"schedule": [
"* * 1,15 * *"
]
},
{
"description": "Throttle the noisy renovate CLI (mise npm:renovate, used by hk's renovate-config-validator step) to bi-monthly",
"matchDatasources": [
"npm"
],
"matchPackageNames": [
"renovate"
],
"minimumReleaseAge": "0 days",
"schedule": [
"* * 1,15 * *"
]
},
{
"description": "Skip release-age quarantine for gtbuchanan's own packages",
"matchSourceUrls": [
"https://github.com/gtbuchanan/{/,}**"
],
"minimumReleaseAge": "0 days"
}
],
"platformCommit": "enabled",
"postUpdateOptions": [
"pnpmDedupe"
],
"pre-commit": {
"enabled": true
},
"rebaseWhen": "conflicted",
"semanticCommits": "disabled",
"timezone": "America/Chicago"
}