Skip to content

Commit

Permalink
chore: updating renovate bot config (#26218)
Browse files Browse the repository at this point in the history
* chore: updating renovate bot config to automatically create electron package update PRs
  • Loading branch information
Ben M committed Mar 24, 2023
1 parent 7060503 commit 5f48d3c
Showing 1 changed file with 19 additions and 8 deletions.
27 changes: 19 additions & 8 deletions renovate.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
{
"extends": [
"config:base"
"config:base",
":semanticCommitScopeDisabled"
],
"automerge": false,
"major": {
Expand All @@ -16,27 +17,37 @@
"renovate"
],
"commitMessageSuffix": "🌟",
"prHourlyLimit": 1,
"prConcurrentLimit": 1,
"prHourlyLimit": 2,
"prConcurrentLimit": 10,
"updateNotScheduled": false,
"timezone": "America/New_York",
"schedule": [
"before 3am on the first day of the month"
"before 5am every weekday"
],
"dependencyDashboardApproval": true,

"packageRules": [
{
"matchPackagePatterns": [
"*"
"^electron"
],
"semanticCommitType": "chore"
"semanticCommitType": "dependency",
"groupName": "electron",
"dependencyDashboardApproval": false
},
{
"excludePackagePatterns": [
"^electron"
],
"semanticCommitType": "dependency",
"dependencyDashboardApproval": true
},
{
"matchDepTypes": [
"dependencies",
"require"
],
"semanticCommitType": "dependency"
"semanticCommitType": "dependency",
"dependencyDashboardApproval": true
}
]
}

0 comments on commit 5f48d3c

Please sign in to comment.