From 33932b2606eec61ee64952148ea2fc3177a87d96 Mon Sep 17 00:00:00 2001 From: Jacob Bolda Date: Thu, 12 Dec 2019 15:19:52 -0600 Subject: [PATCH] [WIP] Renovate to Update Examples (#153) * Update renovate.json * don't ignore examples and group PRs * missing comma * fix comments * scrap comments --- renovate.json | 37 +++++++++++++++++++++++++++++++++++-- 1 file changed, 35 insertions(+), 2 deletions(-) diff --git a/renovate.json b/renovate.json index 81e0cdc47..0459387c3 100644 --- a/renovate.json +++ b/renovate.json @@ -2,9 +2,42 @@ "extends": [ "config:base" ], - "schedule": "after 3am on Tuesday", + "schedule": "after 3am on Wednesday", + "ignorePaths": [], "enabledManagers": ["cargo", "npm"], "cargo": { "enabled": true - } + }, + "packageRules": [ + { + "paths": ["examples/gatsby/**"], + "groupName": "Gatsby Examples", + "groupSlug": "allGatsby", + "commitMessagePrefix": "chore(examples)", + "lockFileMaintenance": { + "enabled": true + }, + "prPriority": -1 + }, + { + "paths": ["examples/vue/**"], + "groupName": "Vue Examples", + "groupSlug": "allVue", + "commitMessagePrefix": "chore(examples)", + "lockFileMaintenance": { + "enabled": true + }, + "prPriority": -1 + }, + { + "paths": ["examples/vanillajs/**"], + "groupName": "VanillaJS Examples", + "groupSlug": "allVanilla", + "commitMessagePrefix": "chore(examples)", + "lockFileMaintenance": { + "enabled": true + }, + "prPriority": -1 + } + ] }