Enable renovate #206

Merged
jalil merged 2 commits from enable-renovate into main 2024-12-28 12:50:16 +01:00
2 changed files with 37 additions and 1 deletions
Showing only changes of commit 0f01fee5c8 - Show all commits

View file

@ -2,7 +2,7 @@
end_of_line = lf end_of_line = lf
charset = utf-8 charset = utf-8
[*.nix] [*.{nix,json}]
indent_style = space indent_style = space
indent_size = 2 indent_size = 2
trim_trailing_whitespace = true trim_trailing_whitespace = true

36
.renovaterc.json Normal file
View file

@ -0,0 +1,36 @@
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"assignees": [
"jalil"
],
"automerge": true,
"automergeStrategy": "fast-forward",
"automergeType": "pr",
"commitBodyTable": true,
"dependencyDashboard": true,
"prCreation": "immediate",
"extends": [
"config:recommended"
],
"nix": {
"fileMatch": [
"(^|/)flake\\.nix$"
],
"commitMessageTopic": "nixpkgs",
"commitMessageExtra": "to {{newValue}}",
"enabled": true
},
"lockFileMaintenance": {
"enabled": true,
"recreateWhen": "always",
"rebaseStalePrs": true,
"branchTopic": "lock-file-maintenance",
"commitMessageAction": "Lock file maintenance",
"schedule": [
"* 1-2 * * *"
]
},
"automergeSchedule": [
"* 1-2 * * *"
]
}