From 039ee13c52b9ce59b3e4a32fa275edab934980be Mon Sep 17 00:00:00 2001 From: Colton Gerke Date: Mon, 27 Jan 2025 11:34:50 -0600 Subject: [PATCH] [FVR-299] Start inheriting Power Renovate config (#304) Part of [FVR-299](https://runway.powerhrg.com/backlog_items/FVR-299) This will ensure Power-standard Renovate config options like tagging Renovate PRs with the 'dependencies' label, ignoring updates to the `.github/workflows/stale.yml` file, and other important Renovate config options are respected in this repository. This includes removing the config entry to tag PRs with 'dependencies', as this will be inherited from the parent config, as well as the duplicate timezone definition. It also modifies the formatting of the `matchUpdateTypes` array to match that of `extends` for consistency, without any content changes. --- renovate.json | 14 ++++++++++---- 1 file changed, 10 insertions(+), 4 deletions(-) diff --git a/renovate.json b/renovate.json index 62392e3d..29d30db5 100644 --- a/renovate.json +++ b/renovate.json @@ -1,14 +1,20 @@ { - "extends": ["config:base", "group:allNonMajor"], + "extends": [ + "group:allNonMajor", + "github>powerhome/renovate-config" + ], "lockFileMaintenance": { "enabled": true, "automerge": true }, - "labels": ["dependencies"], - "timezone": "America/New_York", "packageRules": [ { - "matchUpdateTypes": ["minor", "patch", "pin", "digest"], + "matchUpdateTypes": [ + "minor", + "patch", + "pin", + "digest" + ], "automerge": true }, {