-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdefault.json
96 lines (96 loc) · 3.95 KB
/
default.json
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
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"description": "Use the default config preset for all @marcusrbrown repositories.",
"extends": [
"github>bfra-me/renovate-config#v3",
"github>bfra-me/renovate-config:internal.json5#v3",
":assignAndReview(marcusrbrown)",
":disableRateLimiting",
":preserveSemverRanges",
"security:openssf-scorecard",
"npm:unpublishSafe",
"helpers:pinGitHubActionDigestsToSemver"
],
"suppressNotifications": ["prIgnoreNotification"],
"schedule": ["at any time"],
"packageRules": [
{
"description": "Show Merge Confidence, OpenSSF Scorecard, and GitHub Search badges for Renovate dependencies.",
"matchDatasources": ["go", "maven", "npm", "nuget", "packagist", "pypi", "rubygems"],
"matchUpdateTypes": ["pin", "patch", "minor", "major"],
"prBodyColumns": ["Package", "Change", "Age", "Confidence", "GitHub"]
},
{
"description": "Show Merge Confidence, OpenSSF Scorecard, and GitHub Search badges for Renovate dependencies.",
"matchDatasources": ["go", "maven", "npm", "nuget", "packagist", "pypi", "rubygems"],
"matchUpdateTypes": ["pin", "patch", "minor", "major"],
"matchSourceUrls": ["https://github.com/**"],
"prBodyColumns": ["Package", "Change", "Age", "Confidence", "OpenSSF", "GitHub"]
},
{
"description": "Group major updates of `semantic-release` and `conventional-changelog-conventionalcommits`.",
"matchPackageNames": ["conventional-changelog-conventionalcommits", "semantic-release"],
"matchUpdateTypes": ["major"],
"groupName": "semantic-release and conventionalcommits",
"semanticCommitType": "feat"
},
{
"description": "Automerge my project dependencies without a minimum release age.",
"matchPackageNames": [
"@bfra.me/{/,}**",
"bfra-me/{/,}**",
"/^@?marcusrbrown/",
"marcusrbrown/{/,}**",
"pro-actions/{/,}**"
],
"matchSourceUrlPrefixes": ["https://github.com/bfra-me", "https://github.com/marcusrbrown"],
"automergeType": "branch",
"minimumReleaseAge": null
},
{
"description": "Indicate the update type of Renovate config presets.",
"matchDepNames": ["marcusrbrown/renovate-config"],
"commitMessageTopic": "{{{depName}}} preset"
},
{
"description": "Require recent versions of my Renovate config presets.",
"matchPackageNames": ["marcusrbrown/renovate-config"],
"allowedVersions": ">=3.0.0"
},
{
"description": "Enable platform automerge for selected repositories.",
"matchRepositories": [
"**/.dotfiles",
"**/.github",
"**/ai-chatbot",
"**/containers",
"**/esphome.life",
"**/extend-vscode",
"**/gh-app",
"**/gh-extensions-manifest",
"**/gpt",
"**/ha-config",
"**/marcusrbrown",
"**/renovate-config",
"**/sparkle",
"**/tokentoilet"
],
"matchUpdateTypes": ["minor", "patch", "pin", "pinDigest"],
"platformAutomerge": true
}
],
"prBodyDefinitions": {
"GitHub": "[![GitHub Code Search for \"{{{depName}}}\"](https://img.shields.io/badge/code_search-{{{replace \"-\" \"--\" depName}}}-2671E5.svg?logo=github)](https://github.com/search?q=repo:{{{encodeURIComponent repository}}}+NOT+path:/package(-lock)%3F%5C.json%7Cyarn%5C.lock%7Cpnpm-lock%5C.yaml/+{{{encodeURIComponent depName}}})"
},
"customManagers": [
{
"customType": "regex",
"datasourceTemplate": "github-releases",
"depTypeTemplate": "config",
"extractVersionTemplate": "^(?<version>v?\\d+(\\.\\d+\\.\\d+)?)$",
"fileMatch": ["^\\.git(hu|la)b\\/renovate\\.json5?$", "^\\.renovaterc(\\.json5?)?$", "^renovate\\.json5?$"],
"matchStrings": ["[\"']github>(?<depName>.+)(?:(?::|\\/\\/)(?<path>.+?))?#(?<currentValue>.+?)[\"']"],
"versioningTemplate": "regex:^v?(?<major>\\d+)(\\.(?<minor>\\d+)(\\.(?<patch>\\d+)))?$"
}
]
}