-
Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy pathrenovate-osoce.json5
More file actions
34 lines (34 loc) · 1.33 KB
/
renovate-osoce.json5
File metadata and controls
34 lines (34 loc) · 1.33 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
{
'$schema': 'https://docs.renovatebot.com/renovate-schema.json',
prBodyNotes: [
'@Lombiq/open-source-orchard-extensions-renovate-notification-recipients',
],
addLabels: [
'no-jira-community-activity-issue',
],
schedule: [
// Between 0:00 and 6:59 UTC on Thursdays. Large time window to ensure that Renovate runs at least once then:
// https://docs.renovatebot.com/configuration-options/#schedule.
'* 0-6 * * 4',
],
lockFileMaintenance: {
// Lock File Maintenance (see
// https://docs.mend.io/wsk/common-practices-for-renovate-configuration#CommonPracticesforRenovateConfiguration-LockFileMaintenance)
// has its own schedule and can't use the same schedule as other updates.
schedule: [
'* 0-6 * * 4',
],
},
packageRules: [
{
groupName: 'Non-Breaking Dependency Versions',
// For Orchard Core packages, only patch versions should be updated automatically, and only in web projects.
// That's handled in default-orchard-core in the common Renovate config. So, preventing an override of that
// here.
matchPackageNames: [
'!OrchardCore*',
],
matchUpdateTypes: ['minor', 'patch', 'pin', 'pinDigest'],
},
]
}