-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathrenovate.json5
More file actions
40 lines (39 loc) · 1.29 KB
/
renovate.json5
File metadata and controls
40 lines (39 loc) · 1.29 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
35
36
37
38
39
40
// SPDX-FileCopyrightText: Copyright (C) 2022 Opal Health Informatics Group at the Research Institute of the McGill University Health Centre <john.kildea@mcgill.ca>
//
// SPDX-License-Identifier: AGPL-3.0-or-later
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [
// https://github.com/opalmedapps/.github/blob/main/base.renovate.json5
"github>opalmedapps/.github//base.renovate.json5",
],
// https://docs.renovatebot.com/configuration-options/#assignees
"assignees": [],
"packageRules": [
// Change commit type to build for Docker-related updates
{
"matchDatasources": ["docker", "docker-compose"],
"semanticCommitType": "build"
},
// Group all mypy stub updates together
{
"matchPackageNames": ["/-stubs$/", "/^types-/"],
"groupName": "mypy type stubs"
},
// Group django stubs together
{
"matchPackageNames": ["django-stubs", "django-stubs-ext", "djangorestframework-stubs"],
"groupName": "django-stubs"
},
// Group pandas updates together
{
"matchPackageNames": ["pandas", "pandas-stubs"],
"groupName": "pandas packages"
},
// Group all pytest package updates together
{
"matchPackageNames": ["/pytest/"],
"groupName": "pytest packages"
},
],
}