-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdefault.json
42 lines (42 loc) · 1.1 KB
/
default.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
33
34
35
36
37
38
39
40
41
42
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [
"config:recommended",
":preserveSemverRanges"
],
"baseBranches": [
"develop"
],
"packageRules": [
{
"description": "GitHub Actions; fix(deps): /(^|/)**/action\\.ya?ml$/ e.g. \"./action.yml\". Does not affect workflow files unless they are explicitly named \"action.yaml\" or \"action.yml\".",
"matchManagers": [
"github-actions"
],
"matchFileNames": [
"(^|/)action\\.ya?ml$"
],
"semanticCommitType": "fix",
"semanticCommitScope": "deps"
},
{
"description": "GitHub Actions Workflows",
"matchManagers": [
"github-actions"
],
"matchFileNames": [
"(^|/)(.(?:github|gitea|forgejo)/(?:workflows|actions))/.+\\.ya?ml$"
],
"semanticCommitType": "ci",
"semanticCommitScope": "deps-dev"
},
{
"description": "Auto-merge development dependency updates.",
"matchDepTypes": [
"devDependencies"
],
"automerge": true,
"semanticCommitScope": "deps-dev"
}
]
}