Skip to content

Commit 1683843

Browse files
committed
Initial configuration for Forking Renovate
https://github.com/apps/forking-renovate
1 parent 928065d commit 1683843

File tree

2 files changed

+44
-0
lines changed

2 files changed

+44
-0
lines changed

.github/renovate.json5

+43
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
// Based partially on https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/main/.github/renovate.json5
2+
{
3+
"extends": [
4+
// https://docs.renovatebot.com/presets-config/#configrecommended
5+
"config:recommended",
6+
"schedule:earlyMondays",
7+
":ignoreUnstable",
8+
],
9+
// Apply label to PRs.
10+
"labels": [
11+
"dependencies",
12+
],
13+
// https://docs.renovatebot.com/configuration-options/#minimumreleaseage
14+
"minimumReleaseAge": "3 days",
15+
"dependencyDashboardLabels": [
16+
"type: process",
17+
],
18+
// https://docs.renovatebot.com/configuration-options/#packagerules
19+
"packageRules": [
20+
// *** Java dependency rules:
21+
// group *ALL* Java dependencies
22+
{
23+
"matchCategories": [
24+
"java"
25+
],
26+
"matchUpdateTypes": [
27+
"major",
28+
"minor",
29+
"patch",
30+
],
31+
"groupName": "java",
32+
},
33+
],
34+
"rebaseWhen": "behind-base-branch",
35+
"semanticCommits": "enabled",
36+
// Create PR for vulnerability alerts immediately.
37+
"vulnerabilityAlerts": {
38+
"labels": [
39+
"security"
40+
],
41+
"minimumReleaseAge": null
42+
},
43+
}

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ target/
1111
# Intellij
1212
*.iml
1313
.idea/
14+
.run/
1415

1516
# VS Code
1617
.vscode/

0 commit comments

Comments
 (0)