From 99e80a26344ee7b0fd0592e04e5061a6c77d9aab Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Est=C3=A9ban?= <103997512+esoubiran-aneo@users.noreply.github.com> Date: Wed, 7 Jun 2023 15:34:26 +0200 Subject: [PATCH] chore: update renovate config (#21) --- renovate.json | 28 +++++++++++++++++++++++----- 1 file changed, 23 insertions(+), 5 deletions(-) diff --git a/renovate.json b/renovate.json index 75ac0dd..272b9a4 100644 --- a/renovate.json +++ b/renovate.json @@ -1,8 +1,26 @@ { - "extends": [ - "@nuxtjs" - ], - "lockFileMaintenance": { - "enabled": true + "$schema": "https://docs.renovatebot.com/renovate-schema.json", + "extends": [ + "config:base", + "group:allNonMajor", + ":semanticCommitTypeAll(chore)", + "helpers:pinGitHubActionDigests" + ], + "rangeStrategy": "bump", + "packageRules": [ + { + "groupName": "npm packages", + "groupSlug": "npm", + "matchDatasources": [ + "npm" + ] + }, + { + "groupName": "github actions", + "groupSlug": "github-actions", + "matchDatasources": [ + "github-tags" + ] } + ] }