-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbase.renovate.json5
More file actions
53 lines (52 loc) · 1.99 KB
/
base.renovate.json5
File metadata and controls
53 lines (52 loc) · 1.99 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
41
42
43
44
45
46
47
48
49
50
51
52
53
// 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": [
// Extend a best-practices base preset
// See: https://github.com/mschoettle/renovate-presets#best-practices
"github>mschoettle/renovate-presets//presets/best-practices.json5#df644a68f173f664780b5e83878ef449247e3f90",
// set timezone to local one to ensure schedules are run
// https://docs.renovatebot.com/configuration-options/#timezone
":timezone(America/Toronto)",
// https://docs.renovatebot.com/presets-customManagers/#custommanagersgithubactionsversions
"customManagers:githubActionsVersions",
// Require dashboard approvals to avoid spamming projects
// https://docs.renovatebot.com/presets-default/#dependencydashboardapproval
":dependencyDashboardApproval",
],
// Extra rules for node images. See: https://github.com/renovatebot/renovate/discussions/29501
// Ensure that node docker versioning doesn't interfere with the custom managers.
"ignorePresets": ["workarounds:nodeDockerVersioning"],
// https://docs.renovatebot.com/configuration-options/#labels
"labels": ["dependencies"],
"packageRules": [
// Combine reuse-tool and reuse-action updates
{
"matchPackageNames": ["/reuse-tool/", "/reuse-action/"],
"groupName": "reuse",
},
// Combine Docker actions
{
"matchManagers": ["github-actions"],
"matchPackageNames": ["/docker\\//"],
},
// Combine download and upload artifact actions
{
"matchManagers": ["github-actions"],
"matchPackageNames": ["actions/upload-artifact", "actions/download-artifact"],
},
// Disable action pinning for our own actions and workflows
{
"matchDepTypes": [
"action"
],
"pinDigests": false,
"matchPackageNames": [
"opalmedapps/actions",
"opalmedapps/.github",
],
},
],
}