Skip to content

Commit

Permalink
[FVR-299] Start inheriting Power Renovate config (#304)
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
c-gerke authored Jan 27, 2025
1 parent 9025200 commit 039ee13
Showing 1 changed file with 10 additions and 4 deletions.
14 changes: 10 additions & 4 deletions renovate.json
Original file line number Diff line number Diff line change
@@ -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
},
{
Expand Down

0 comments on commit 039ee13

Please sign in to comment.