ci: only run check-renovaterc when the renovaterc changes
All checks were successful
/ check-renovaterc (push) Successful in 3s
/ check (push) Successful in 8s
/ build-packages (push) Successful in 14s
/ build-vm (push) Successful in 3s
/ report-size (push) Successful in 3s

Otherwise we are just wasting CI time
This commit is contained in:
Jalil David Salamé Messina 2025-05-16 19:10:11 +02:00
parent dc5e219bc3
commit 46a36b1001
Signed by: jalil
GPG key ID: F016B9E770737A0B
3 changed files with 17 additions and 11 deletions

36
renovate.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:best-practices"
],
"nix": {
"fileMatch": [
"(^|/)flake\\.nix$"
],
"commitMessageTopic": "nixpkgs",
"commitMessageExtra": "to {{newValue}}",
"enabled": true
},
"lockFileMaintenance": {
"enabled": true,
"recreateWhen": "always",
"rebaseWhen": "behind-base-branch",
"branchTopic": "lock-file-maintenance",
"commitMessageAction": "Lock file maintenance",
"schedule": [
"* 0 * * *"
]
},
"automergeSchedule": [
"* 1 * * *"
]
}