From a04715baf928ceb2a15dd6612c2fe7cbff52dbad Mon Sep 17 00:00:00 2001 From: Jacob Bolda Date: Fri, 3 Jan 2020 05:02:54 -0600 Subject: [PATCH] fix wildcard on renovate folder groups (#275) --- renovate.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/renovate.json b/renovate.json index 91b4b228d..4b0f2a3fa 100644 --- a/renovate.json +++ b/renovate.json @@ -9,7 +9,7 @@ }, "packageRules": [ { - "paths": ["examples/react/gatsby**"], + "paths": ["examples/react/gatsby*/**"], "groupName": "Gatsby Examples", "groupSlug": "allGatsby", "commitMessagePrefix": "chore(examples)", @@ -21,7 +21,7 @@ "rebaseConflictedPrs": true }, { - "paths": ["examples/react/create-react-app**"], + "paths": ["examples/react/create-react-app*/**"], "groupName": "CRA Examples", "groupSlug": "allCRA", "commitMessagePrefix": "chore(examples)", @@ -33,7 +33,7 @@ "rebaseConflictedPrs": true }, { - "paths": ["examples/react/next**"], + "paths": ["examples/react/next*/**"], "groupName": "Next.js Examples", "groupSlug": "allNextjs", "commitMessagePrefix": "chore(examples)",