-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrenovate.json
More file actions
36 lines (36 loc) · 1.07 KB
/
Copy pathrenovate.json
File metadata and controls
36 lines (36 loc) · 1.07 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
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [
"config:recommended",
"helpers:pinGitHubActionDigests",
":enablePreCommit"
],
"internalChecksFilter": "strict",
"minimumReleaseAgeBehaviour": "timestamp-required",
"automerge": true,
"minimumReleaseAge": "3 days",
"packageRules": [
{
"description": "Tagged action releases: cooldown, then automerge",
"matchManagers": ["github-actions"],
"matchUpdateTypes": ["minor", "patch"],
"minimumReleaseAge": "3 days",
"automerge": true,
"automergeType": "pr"
},
{
"description": "Major action bumps: cooldown, manual review",
"matchManagers": ["github-actions"],
"matchUpdateTypes": ["major"],
"minimumReleaseAge": "3 days",
"automerge": true
},
{
"description": "Pure digest moves: no timestamp available, always review",
"matchManagers": ["github-actions"],
"matchUpdateTypes": ["digest", "pinDigest", "pin"],
"automerge": false,
"dependencyDashboardApproval": true
}
]
}