Skip to content

Commit 229d1c2

Browse files
committed
feat: add renovate configuration
1 parent 078bc9a commit 229d1c2

File tree

3 files changed

+27
-1
lines changed

3 files changed

+27
-1
lines changed

.editorconfig

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,4 +12,3 @@ trim_trailing_whitespace = true
1212

1313
[*.{json, md, yaml, yml, proto}]
1414
indent_size = 2
15-

.vscode/settings.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
11
{
2+
"files.associations": {
3+
"*.json5": "jsonc",
4+
},
25
"rust-analyzer.cargo.features": "all",
36
"rust-analyzer.check.command": "clippy",
47
"nix.serverPath": "nil",

renovate.json5

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
{
2+
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
3+
"extends": [
4+
"config:recommended",
5+
"group:allNonMajor",
6+
"helpers:pinGitHubActionDigests"
7+
],
8+
"branchPrefix": "chore/renovate-",
9+
"rebaseWhen": "behind-base-branch",
10+
"nix": {
11+
"enabled": true
12+
},
13+
"lockFileMaintenance": {
14+
"enabled": true,
15+
"recreateWhen": "always",
16+
"rebaseStalePrs": true
17+
},
18+
"packageRules": [
19+
// Group all Github Actions updates in a single PR.
20+
{
21+
"matchManagers": ["github-actions"]
22+
}
23+
]
24+
}

0 commit comments

Comments
 (0)