From 7d256ea2f4c339195edf1348b4c753d2bee2f39e Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Thu, 11 Jul 2024 17:19:33 +1200 Subject: [PATCH] chore: configure Renovate (#259) * Add renovate.json * chore: update renovate --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Gareth Jones --- renovate.json | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 renovate.json diff --git a/renovate.json b/renovate.json new file mode 100644 index 0000000..f41c5c5 --- /dev/null +++ b/renovate.json @@ -0,0 +1,30 @@ +{ + "$schema": "https://docs.renovatebot.com/renovate-schema.json", + "extends": ["config:base"], + "timezone": "Pacific/Auckland", + "schedule": ["before 6am on monday"], + "labels": ["dependencies"], + "postUpdateOptions": ["gomodTidy"], + "osvVulnerabilityAlerts": true, + "lockFileMaintenance": { "enabled": true }, + "packageRules": [ + { + "matchUpdateTypes": ["major"], + "groupName": "Major Updates", + "enabled": true + }, + { + "matchLanguages": ["golang"], + "groupName": "osv-detector minor" + }, + { + "matchFileNames": [".github/**"], + "groupName": "workflows" + }, + { + "matchDepTypes": ["golang"], + "enabled": false + } + ], + "ignorePaths": ["**/fixtures/**"] +}