File tree
Expand file treeCollapse file tree2 files changed
+44
-0
lines changed Expand file treeCollapse file tree2 files changed
+44
-0
lines changed Original file line number | Diff line number | Diff line change |
---|
|
| 1 | +// Based partially on https://raw.usercontent.com/GoogleCloudPlatform/java-docs-samples/main/./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 | +"dependencyDasardLabels": [ |
| 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 | +"", |
| 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/
|
11 | 11 | # Intellij
|
12 | 12 | *.iml
|
13 | 13 | .idea/
|
| 14 | +.run/ |
14 | 15 |
|
15 | 16 | # VS Code
|
16 | 17 | .vscode/
|
|
You can’t perform that action at this time.
0 commit comments