-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: align renovate config with our other repos [UA-5791]
- Loading branch information
1 parent
59c4d9a
commit 4cf3c7f
Showing
1 changed file
with
24 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,26 @@ | ||
{ | ||
"$schema": "https://docs.renovatebot.com/renovate-schema.json", | ||
"branchPrefix": "renovate/", | ||
"extends": [ | ||
"config:base", | ||
"github>coveo/renovate//presets/coveo-defaults.json5", | ||
"schedule:earlyMondays", | ||
"group:allNonMajor" | ||
], | ||
"prConcurrentLimit": 3, | ||
"prHeader": "DT-5590 <- Put your own jira issue here by setting the `prHeader` value in your renovate config", | ||
"rebaseWhen": "auto" | ||
$schema: 'https://docs.renovatebot.com/renovate-schema.json', | ||
branchPrefix: 'feat/UA-5791-', | ||
labels: ['dependency update'], | ||
baseBranches: ['master'], | ||
repositories: ['coveo/coveo.analytics.js'], | ||
packageRules: [ | ||
{ | ||
matchPackagePatterns: ['*'], | ||
matchUpdateTypes: ['minor', 'patch'], | ||
groupName: 'all non-major dependencies', | ||
groupSlug: 'all-minor-patch', | ||
}, | ||
], | ||
extends: [ | ||
'config:base', | ||
'github>coveo/renovate//presets/coveo-defaults.json5', | ||
'schedule:earlyMondays', | ||
'group:allNonMajor', | ||
], | ||
reviewersFromCodeOwners: true, | ||
commitMessagePrefix: '[Renovate]', | ||
commitMessageSuffix: '[Version Bump] UA-5791', | ||
separateMinorPatch: false, | ||
suppressNotifications: ['prIgnoreNotification'], | ||
} |