-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
default.json
83 lines (83 loc) · 3.01 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
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"description": "Use the default config preset for all @marcusrbrown repositories.",
"extends": [
"github>bfra-me/renovate-config",
"github>bfra-me/renovate-config:internal.json5",
":assignAndReview(marcusrbrown)",
":disableRateLimiting",
":preserveSemverRanges"
],
"suppressNotifications": ["prIgnoreNotification"],
"schedule": ["at any time"],
"packageRules": [
{
"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": "Allow floating versions for my Renovate config presets.",
"matchDepNames": ["marcusrbrown/renovate-config"],
"commitMessageTopic": "{{{depName}}} preset",
"pinDigests": false,
"rangeStrategy": "replace",
"updatePinnedDependencies": false
},
{
"description": "Automerge my project dependencies without a minimum release age.",
"matchDepPatterns": ["^bfra-me\\/", "^marcusrbrown\\/"],
"matchPackagePatterns": ["^@bfra\\.me\\/", "^@marcusrbrown\\/"],
"matchSourceUrlPrefixes": ["https://github.com/bfra-me", "https://github.com/marcusrbrown"],
"automergeType": "branch",
"minimumReleaseAge": null
},
{
"description": "Require recent versions of my Renovate config presets.",
"matchPackageNames": ["marcusrbrown/renovate-config"],
"allowedVersions": ">=v2.1.3"
},
{
"description": "Do not pin digests for internal actions.",
"matchDepTypes": ["actions"],
"matchPackagePatterns": ["^bfra-me\\/", "^marcusrbrown\\/", "^pro-actions\\/"],
"pinDigests": false,
"rangeStrategy": "replace",
"updatePinnedDependencies": false
},
{
"description": "Enable platform automerge for selected repositories.",
"matchRepositories": [
"**/.dotfiles",
"**/.github",
"**/ai-chatbot",
"**/containers",
"**/esphome.life",
"**/gh-app",
"**/gh-extensions-manifest",
"**/gpt",
"**/ha-config",
"**/marcusrbrown",
"**/renovate-config",
"**/sparkle",
"**/tokentoilet",
"**/vscode-extension"
],
"platformAutomerge": true
}
],
"customManagers": [
{
"customType": "regex",
"datasourceTemplate": "github-tags",
"extractVersionTemplate": "^(?<version>v?\\d+(\\.\\d+\\.\\d+)?)$",
"fileMatch": ["^\\.git(hu|la)b\\/renovate\\.json5?$", "^\\.renovaterc(\\.json5?)?$", "^renovate\\.json5?$"],
"matchStrings": [
"[\"']github>(?<depName>marcusrbrown\\/renovate-config)(?:(?::|\\/\\/)(?<path>.+?))?#(?<currentValue>.+?)[\"']"
],
"versioningTemplate": "regex:^v?(?<major>\\d+)(\\.(?<minor>\\d+)(\\.(?<patch>\\d+)))?$"
}
]
}