Skip to content

Commit

Permalink
chore(config): migrate renovate bot config (#8809)
Browse files Browse the repository at this point in the history
  • Loading branch information
renovate[bot] authored Jan 27, 2025
1 parent d75d2bf commit 2ee64a4
Showing 1 changed file with 28 additions and 25 deletions.
53 changes: 28 additions & 25 deletions .github/renovate.json5
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"extends": [
"config:base",
extends: [
"config:recommended",
":semanticCommitType(chore)",
":label(renovate)",
":prHourlyLimit2",
Expand All @@ -9,36 +9,39 @@
"group:recommended",
"group:monorepos",
":enableVulnerabilityAlerts",
"helpers:pinGitHubActionDigests"
"helpers:pinGitHubActionDigests",
],
"npm": {
"extends": [
// ":automergePatch",
npm: {
extends: [
":noUnscheduledUpdates",
":maintainLockFilesWeekly",
"npm:unpublishSafe",
"helpers:disableTypesNodeMajor"
"helpers:disableTypesNodeMajor",
],
"schedule": ["before 3am on the first day of the month"],
"packageRules": [
schedule: ["before 3am on the first day of the month"],
packageRules: [
{
"groupName": "ESLint and Prettier",
"matchPackageNames": ["eslint", "prettier"],
"matchPackagePatterns": ["^eslint-config-", "^eslint-plugin-"]
groupName: "ESLint and Prettier",
matchPackageNames: [
"eslint",
"prettier",
"/^eslint-config-/",
"/^eslint-plugin-/",
],
},
]
],
},
"circleci": {
"enabled": true,
"schedule": ["before 3am on the first day of the month"],
"pinDigests": true,
"semanticCommitScope": "docker",
"semanticCommitType": "ci",
"packageRules": [
circleci: {
enabled: true,
schedule: ["before 3am on the first day of the month"],
pinDigests: true,
semanticCommitScope: "docker",
semanticCommitType: "ci",
packageRules: [
{
"groupName": "Node Docker digests in CircleCI",
"matchPackageNames": ["circleci/node", "node"]
}
]
}
groupName: "Node Docker digests in CircleCI",
matchPackageNames: ["circleci/node", "node"],
},
],
},
}

0 comments on commit 2ee64a4

Please sign in to comment.