From cba2810e69cbdf648b0c519da55df278953b1345 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Sat, 2 Sep 2023 01:30:30 -0500 Subject: [PATCH] Configure Renovate (#168) * Add renovate.json * Update renovate.json --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Chris Talkington --- renovate.json | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 renovate.json diff --git a/renovate.json b/renovate.json new file mode 100644 index 00000000..f9c175e2 --- /dev/null +++ b/renovate.json @@ -0,0 +1,32 @@ +{ + "$schema": "https://docs.renovatebot.com/renovate-schema.json", + "extends": [ + "config:base", + "schedule:daily", + ":maintainLockFilesMonthly", + ":pinDevDependencies" + ], + "timezone": "America/Chicago", + "labels": ["dependencies"], + "packageRules": [ + { + "matchManagers": ["npm", "nvm"], + "separateMultipleMajor": true + }, + { + "matchManagers": ["npm", "nvm"], + "matchUpdateTypes": ["minor", "patch"], + "automerge": true + }, + { + "matchManagers": ["github-actions"], + "addLabels": ["ci", "github-actions"], + "rangeStrategy": "pin" + }, + { + "matchManagers": ["github-actions"], + "matchUpdateTypes": ["minor", "patch"], + "automerge": true + } + ] +}