Skip to content

Commit

Permalink
chore: simplify renovate config (#505)
Browse files Browse the repository at this point in the history
  • Loading branch information
moonmeister authored Jan 6, 2025
1 parent c0cd977 commit d35d60d
Showing 1 changed file with 1 addition and 30 deletions.
31 changes: 1 addition & 30 deletions renovate.json5
Original file line number Diff line number Diff line change
Expand Up @@ -9,44 +9,15 @@
masterIssueApproval: true,
},
masterIssue: true,
rangeStrategy: "bump",
prHourlyLimit: 0,
configMigration: true,
packageRules: [
// General Package updates
{
groupName: "non-major dependency versions",
matchUpdateTypes: ["minor", "patch"],
additionalBranchPrefix: "{{#if parentDir}}packages{{else}}repo{{/if}}-",
},
// Role all babel related updates into 1 for a quiter life
{
matchPackagePatterns: ["^@babel/", "^babel"],
groupName: "build tooling",
groupSlug: "build-deps",
additionalBranchPrefix: "",
semanticCommitScope: "babel",
matchUpdateTypes: ["minor", "patch"],
},
//Group Jest updates together
{
matchPackageNames: ["@types/jest"],
matchPackagePatterns: ["^jest"],
matchUpdateTypes: ["digest", "patch", "minor", "major"],
groupName: "jest monorepo",
additionalBranchPrefix: "jest",
},
// Integration test updates don't require releases, so just role all into 1 to keep things quieter.
{
groupName: "integration tests",
matchPaths: ["integration-tests/**"],
groupSlug: "integration-test-deps",
semanticCommitScope: "integration-tests",
additionalBranchPrefix: "",
matchUpdateTypes: ["minor", "patch"],
},
],
semanticCommits: "enabled",
semanticCommitType: "chore",
semanticCommitScope: "{{#if parentDir}}packages{{else}}repo{{/if}}",
ignoreDeps: ["node"],
}

0 comments on commit d35d60d

Please sign in to comment.