-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrenovate.json
32 lines (32 loc) · 1.13 KB
/
renovate.json
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": ["local>reside-eng/renovate-config", ":reviewer(team:devops)"],
"ignorePresets": [":actions-ci"],
"packageRules": [
{
"description": "Configure dependencies (labels, commit format as releasable).",
"matchDepTypes": ["action"],
"semanticCommitType": "fix",
"semanticCommitScope": "deps",
"labels": ["dependencies"]
},
{
"description": "Group and auto-merge non-major dependencies",
"matchUpdateTypes": ["minor", "patch", "pin", "digest"],
"matchDepTypes": ["action"],
"automerge": true,
"automergeType": "pr",
"automergeStrategy": "squash",
"groupName": "Non major deps",
"groupSlug": "non-major-deps"
},
{
"description": "Configure Github Actions dependencies (labels, commit format). NOTE: This is actions for this repo NOT templates.",
"matchDepTypes": ["action"],
"labels": ["github_actions", "ci"],
"matchFileNames": ["./github/workflows/publish.yml"],
"semanticCommitType": "chore",
"semanticCommitScope": "ci-deps"
}
]
}