-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy path.renovaterc.json5
More file actions
32 lines (32 loc) · 1006 Bytes
/
Copy path.renovaterc.json5
File metadata and controls
32 lines (32 loc) · 1006 Bytes
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
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [
"security:only-security-updates",
"helpers:pinGitHubActionDigests"
],
// Avoid adopting compromised packages by waiting for a cooldown period
// after each release before updating.
"minimumReleaseAge": "3 days",
"packageRules": [
{
"description": "Internal Go modules are released together from this repository.",
"matchManagers": ["gomod"],
"matchPackageNames": [
"github.com/ewhauser/gbash",
"github.com/ewhauser/gbash/**"
],
"enabled": false
},
{
"description": "The workspace package is versioned by this repository's release flow.",
"matchManagers": ["npm"],
"matchPackageNames": ["@ewhauser/gbash*"],
"enabled": false
},
{
"description": "Keep GitHub Action updates together so digest refreshes stay readable.",
"matchManagers": ["github-actions"],
"groupName": "github actions"
}
]
}