|
1 | 1 | { |
| 2 | + "$schema": "https://docs.renovatebot.com/renovate-schema.json", |
2 | 3 | "extends": [ |
3 | 4 | "config:recommended" |
4 | 5 | ], |
5 | | - "postUpgradeTasks": { |
6 | | - "commands": [ |
7 | | - "./gradlew --write-verification-metadata pgp,sha256 --export-keys help" |
8 | | - ], |
9 | | - "fileFilters": [ |
10 | | - "gradle/verification-metadata.xml", |
11 | | - "gradle/verification-keyring.keys" |
12 | | - ] |
13 | | - }, |
14 | | - "allowedCommands": [ |
15 | | - "^./gradlew --write-verification-metadata pgp,sha256 --export-keys help$" |
| 6 | + "minimumReleaseAge": "7 days", |
| 7 | + "dependencyDashboard": true, |
| 8 | + "packageRules": [ |
| 9 | + { |
| 10 | + "description": "Defer major updates to manual selection from the Dependency Dashboard", |
| 11 | + "matchUpdateTypes": ["major"], |
| 12 | + "dependencyDashboardApproval": true |
| 13 | + }, |
| 14 | + { |
| 15 | + "description": "Group low-risk GitHub Actions updates", |
| 16 | + "matchManagers": ["github-actions"], |
| 17 | + "groupName": "github actions" |
| 18 | + }, |
| 19 | + { |
| 20 | + "description": "Spock's version suffix encodes the Groovy variant; review lockstep with groovy", |
| 21 | + "matchPackageNames": ["/^org\\.spockframework:/"], |
| 22 | + "groupName": "spock (manual review - groovy variant)", |
| 23 | + "dependencyDashboardApproval": true |
| 24 | + }, |
| 25 | + { |
| 26 | + "description": "Group routine Gradle minor/patch dependency bumps", |
| 27 | + "matchManagers": ["gradle"], |
| 28 | + "matchUpdateTypes": ["minor", "patch"], |
| 29 | + "groupName": "gradle minor/patch dependencies" |
| 30 | + }, |
| 31 | + { |
| 32 | + "description": "org.rundeck artifacts also need the Sonatype Central snapshots feed", |
| 33 | + "matchPackageNames": ["/^org\\.rundeck[.:]/"], |
| 34 | + "registryUrls": [ |
| 35 | + "https://repo1.maven.org/maven2/", |
| 36 | + "https://central.sonatype.com/repository/maven-snapshots/" |
| 37 | + ] |
| 38 | + }, |
| 39 | + { |
| 40 | + "description": "Gradle plugin marker artifacts resolve via the Gradle Plugin Portal", |
| 41 | + "matchManagers": ["gradle"], |
| 42 | + "matchDepTypes": ["plugin"], |
| 43 | + "registryUrls": [ |
| 44 | + "https://plugins.gradle.org/m2/", |
| 45 | + "https://repo1.maven.org/maven2/" |
| 46 | + ] |
| 47 | + } |
16 | 48 | ] |
17 | 49 | } |
0 commit comments