-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdefault.json
More file actions
38 lines (38 loc) · 994 Bytes
/
default.json
File metadata and controls
38 lines (38 loc) · 994 Bytes
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:best-practices",
"helpers:pinGitHubActionDigestsToSemver"
],
"labels": [
"dependencies"
],
"packageRules": [
{
"description": "Ensure any digest-pinned, GitHub-sourced, dependencies creates a link to the diff between the two commits",
"matchSourceUrls": [
"https://github.com/**/*"
],
"matchUpdateTypes": [
"digest"
],
"changelogUrl": "{{sourceUrl}}/compare/{{currentDigest}}..{{newDigest}}"
}
],
"regexManagers": [
{
"fileMatch": [
"^Makefile$"
],
"matchStrings": [
"curl .*https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s -- .* (?<currentValue>.*?)\\n"
],
"depNameTemplate": "github.com/golangci/golangci-lint",
"datasourceTemplate": "go"
}
],
"postUpdateOptions": [
"gomodTidy",
"gomodUpdateImportPaths"
]
}