|
| 1 | +module.exports = { |
| 2 | + platform: "github", |
| 3 | + repositories: ["funfix/tasks"], |
| 4 | + gitAuthor: "Renovate Bot <renovate@funfix.org>", |
| 5 | + branchPrefix: "renovate/", |
| 6 | + onboarding: false, |
| 7 | + requireConfig: "optional", |
| 8 | + recreateWhen: "always", |
| 9 | + prHourlyLimit: 0, |
| 10 | + |
| 11 | + extends: [":dependencyDashboard"], |
| 12 | + |
| 13 | + enabledManagers: ["github-actions", "gradle", "gradle-wrapper", "sbt"], |
| 14 | + |
| 15 | + ignorePaths: ["**/.gradle/**"], |
| 16 | + |
| 17 | + packageRules: [ |
| 18 | + { |
| 19 | + description: "Group all dependency updates into a single PR", |
| 20 | + matchManagers: ["github-actions", "gradle", "gradle-wrapper", "sbt"], |
| 21 | + groupName: "dependencies", |
| 22 | + groupSlug: "all-dependencies", |
| 23 | + group: { |
| 24 | + commitMessageTopic: "dependencies", |
| 25 | + commitMessageExtra: "", |
| 26 | + }, |
| 27 | + }, |
| 28 | + { |
| 29 | + description: "Only use stable dotted numeric JVM dependency versions", |
| 30 | + matchManagers: ["gradle", "gradle-wrapper", "sbt"], |
| 31 | + allowedVersions: "/^\\d+(?:\\.\\d+)+$/", |
| 32 | + }, |
| 33 | + { |
| 34 | + description: "Keep Scala on the 3.3.x line", |
| 35 | + matchManagers: ["sbt"], |
| 36 | + matchPackageNames: ["org.scala-lang:scala3-library_3"], |
| 37 | + allowedVersions: "/^3\\.3\\.\\d+$/", |
| 38 | + }, |
| 39 | + { |
| 40 | + description: "Wait one week before proposing dependency updates", |
| 41 | + matchManagers: ["github-actions", "gradle", "gradle-wrapper", "sbt"], |
| 42 | + minimumReleaseAge: "7 days", |
| 43 | + minimumReleaseAgeBehaviour: "timestamp-optional", |
| 44 | + }, |
| 45 | + ], |
| 46 | +}; |
0 commit comments