Skip to content

Commit

Permalink
fix: align renovate config with our other repos [UA-5791]
Browse files Browse the repository at this point in the history
  • Loading branch information
mpayne-coveo committed Nov 10, 2023
1 parent 59c4d9a commit 4cf3c7f
Showing 1 changed file with 24 additions and 11 deletions.
35 changes: 24 additions & 11 deletions renovate.json5
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'],
}

0 comments on commit 4cf3c7f

Please sign in to comment.