From 8ae06e571f74790b550e5708784b5c359a04eb9e Mon Sep 17 00:00:00 2001 From: Cody Olsen Date: Sat, 31 Dec 2022 00:26:35 +0100 Subject: [PATCH] chore: set renovate commit scope --- renovate.json | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/renovate.json b/renovate.json index f866601bc70..95194a9354b 100644 --- a/renovate.json +++ b/renovate.json @@ -1,4 +1,13 @@ { "$schema": "https://docs.renovatebot.com/renovate-schema.json", - "extends": ["github>sanity-io/renovate-presets//ecosystem/auto", ":dependencyDashboardApproval"] + "extends": ["github>sanity-io/renovate-presets//ecosystem/auto", ":dependencyDashboardApproval"], + "packageRules": [ + { + "description": "Dependency updates to examples and the root should always use the chore scope as they aren't published to npm", + "matchPaths": ["dev/**/package.json"], + "matchFiles": ["package.json"], + "extends": [":semanticCommitTypeAll(chore)"], + "groupSlug": "dev" + } + ] }