generated from pulumi/pulumi-tf-provider-boilerplate
-
-
Notifications
You must be signed in to change notification settings - Fork 14
/
renovate.json
53 lines (53 loc) · 1.6 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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [
"config:base",
":dependencyDashboard",
":semanticCommitTypeAll(chore)"
],
"prHourlyLimit": 0,
"prConcurrentLimit": 0,
"baseBranches": [
"main"
],
"ignorePaths": [
"**/node_modules/**",
"**/bower_components/**",
"sdk/nodejs/**",
"sdk/go/**",
"sdk/dotnet/**",
"sdk/python/**",
"sdk/java/**"
],
"enabledManagers": [
"github-actions",
"gomod",
"npm"
],
"github-actions": {
"fileMatch": [
"^(workflow-templates|\\.github/workflows)/[^/]+\\.ya?ml$",
"(^|/)action\\.ya?ml$"
]
},
"gomod": {
"fileMatch": [
"(^|/)go\\.mod$"
]
},
"npm": {
"fileMatch": [
"(^|/)package\\.json$"
],
"rollbackPrs": true,
"versioning": "npm",
"digest": {
"prBodyDefinitions": {
"Change": "{{#if displayFrom}}`{{{displayFrom}}}` -> {{else}}{{#if currentValue}}`{{{currentValue}}}` -> {{/if}}{{/if}}{{#if displayTo}}`{{{displayTo}}}`{{else}}`{{{newValue}}}`{{/if}}"
}
},
"prBodyDefinitions": {
"Change": "[{{#if displayFrom}}`{{{displayFrom}}}` -> {{else}}{{#if currentValue}}`{{{currentValue}}}` -> {{/if}}{{/if}}{{#if displayTo}}`{{{displayTo}}}`{{else}}`{{{newValue}}}`{{/if}}]({{#if depName}}https://renovatebot.com/diffs/npm/{{replace '/' '%2f' depName}}/{{{currentVersion}}}/{{{newVersion}}}{{/if}})"
}
}
}