-
Notifications
You must be signed in to change notification settings - Fork 0
/
renovate.json
53 lines (53 loc) · 1.36 KB
/
renovate.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
{
"configMigration": true,
"extends": [
"config:recommended",
":dependencyDashboard",
"helpers:pinGitHubActionDigests",
":pinDevDependencies",
":semanticCommits",
":semanticCommitTypeAll(chore)",
":separateMajorReleases",
":separatePatchReleases",
":rebaseStalePrs",
":enableVulnerabilityAlerts",
"npm:unpublishSafe"
],
"automerge": true,
"assignees": [
"tassiluca"
],
"prHourlyLimit": 0,
"packageRules": [
{
"description": "CI updates must be tagged as `ci`",
"matchFileNames": [
".github/workflows/*.yml",
".github/workflows/*.yaml"
],
"semanticCommitType": "ci"
},
{
"description": "Trigger a patch update on Gradle and Kotlin upgrades (as per Semantic Release configuration)",
"matchPackageNames": [
"gradle",
"org.jetbrains.kotlin.jvm",
"org.jetbrains.dokka",
"org.jetbrains.kotlin:kotlin-gradle-plugin",
"kotlin-monorepo"
],
"semanticCommitScope": "core-deps"
},
{
"description": "Trigger a minor update on QA dependencies (as per Semantic Release configuration)",
"matchPackageNames": [
"io.github.cosmicsilence:gradle-scalafix",
"cz.augi:gradle-scalafmt"
],
"matchDepNames": [
"scalafmt"
],
"semanticCommitScope": "api-deps"
}
]
}