From 4db66496a8e7fca48ce0a66f2a68d9b6764d604b Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Wed, 20 Dec 2023 22:26:36 -0500 Subject: [PATCH] chore: Configure Renovate (#15) * Add renovate.json * remove default preset, add nix, allow non-office hours Signed-off-by: strawberry * enable lockfile maintenance Signed-off-by: strawberry * will this make nix work Signed-off-by: strawberry --------- Signed-off-by: strawberry Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: strawberry --- renovate.json | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 renovate.json diff --git a/renovate.json b/renovate.json new file mode 100644 index 00000000..4957f3dd --- /dev/null +++ b/renovate.json @@ -0,0 +1,22 @@ +{ + "$schema": "https://docs.renovatebot.com/renovate-schema.json", + "schedule": [ + "at any time" + ], + "lockFileMaintenance": { + "enabled": true, + "schedule": [ + "at any time" + ] + }, + "nix": { + "schedule": [ + "at any time" + ], + "enabled": true + }, + "enabledManagers": [ + "github-actions", + "nix" + ] +}