-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrenovate.json5
More file actions
37 lines (36 loc) · 1.05 KB
/
renovate.json5
File metadata and controls
37 lines (36 loc) · 1.05 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
// SPDX-FileCopyrightText: Copyright (C) 2025 Opal Health Informatics Group <https://www.opalmedapps.com>
//
// SPDX-License-Identifier: MIT
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [
"github>opalmedapps/.github//renovate-base.json5",
],
// https://docs.renovatebot.com/configuration-options/#assignees
"assignees": [],
// https://docs.renovatebot.com/configuration-options/#packagerules
"packageRules": [
// Exclude markdownlint-cli2 and reuse-tool pre-commit hooks from the pre-commit hooks group
// to avoid adding config options from the pre-commit hooks preset
{
"matchManagers": [
"pre-commit",
],
"matchPackageNames": [
"!/markdownlint-cli2/",
"!/reuse-tool/",
],
},
// Combine reuse-tool and reuse-action updates
{
"matchPackageNames": ["/reuse-tool/", "/reuse-action/"],
"groupName": "reuse",
},
],
"renovate-config-presets": {
"managerFilePatterns": [
"renovate.json5",
"renovate-base.json5",
],
},
}