Skip to content

Commit 3e6dfdd

Browse files
committed
enable renovate
1 parent 73bf5eb commit 3e6dfdd

File tree

1 file changed

+56
-0
lines changed

1 file changed

+56
-0
lines changed

.github/renovate.json5

Lines changed: 56 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,56 @@
1+
{
2+
$schema: "https://docs.renovatebot.com/renovate-schema.json",
3+
extends: [
4+
"config:base"
5+
],
6+
enabled: true,
7+
enabledManagers: [
8+
"npm",
9+
"gradle",
10+
"gradle-wrapper",
11+
"github-actions",
12+
],
13+
14+
// Will auto-merge directly, without a PR, if tests pass - else, makes a PR.
15+
// Must add Renovate to 'Allow specified actors to bypass required pull requests'
16+
// in branch protection rule
17+
automergeType: "branch",
18+
platformAutomerge: true,
19+
ignoreTests: false,
20+
packageRules: [
21+
{
22+
description: "auto-merge all but major releases",
23+
matchUpdateTypes: [
24+
"minor",
25+
"patch",
26+
"pin",
27+
"digest",
28+
],
29+
automerge: true,
30+
}
31+
],
32+
33+
timezone: "Etc/UTC",
34+
schedule: [
35+
//"on the first day of the month",
36+
"after 10am",
37+
],
38+
39+
stabilityDays: 14,
40+
// suppressNotifications: [
41+
// "artifactErrors",
42+
// "branchAutomergeFailure",
43+
// "configErrorIssue",
44+
// "deprecationWarningIssues",
45+
// "lockFileErrors",
46+
// "onboardingClose",
47+
// "prEditedNotification",
48+
// "prIgnoreNotification",
49+
// ],
50+
prCreation: "status-success",
51+
semanticCommits: "disabled",
52+
53+
ignorePaths: [
54+
"**/modules/bcv-gradle-plugin-functional-tests/src/functionalTest/resources/**",
55+
]
56+
}

0 commit comments

Comments
 (0)