File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 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+ }
Original file line number Diff line number Diff line change @@ -11,6 +11,7 @@ target/
1111# Intellij
1212* .iml
1313.idea /
14+ .run /
1415
1516# VS Code
1617.vscode /
You can’t perform that action at this time.
0 commit comments