Skip to content

Commit 73ab280

Browse files
committed
Configure renovate
1 parent a616f42 commit 73ab280

File tree

2 files changed

+37
-7
lines changed

2 files changed

+37
-7
lines changed

.github/dependabot.yml

Lines changed: 0 additions & 7 deletions
This file was deleted.

renovate.json

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
{
2+
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
3+
"extends": [
4+
"config:base"
5+
],
6+
"baseBranches" : [
7+
"/^[0-9].[0-9].[0-9]\\-dev$/"
8+
],
9+
"ignoreDeps": [
10+
"com.mojang:minecraft",
11+
"quiet-fabric-loom"
12+
],
13+
"labels": [
14+
"dependencies"
15+
],
16+
"packageRules": [
17+
{
18+
"description": "Correct version handling for dependencies with format major.minor.patch+mcver",
19+
"matchPackageNames": ["net.fabricmc.fabric-api:fabric-api", "net.fabricmc.fabric-api:fabric-api-deprecated"],
20+
"versioning": "regex:^(?<major>\\d+)(\\.(?<minor>\\d+))?(\\.(?<patch>\\d+))?(?:\\+(?<compatibility>.*))?$"
21+
},
22+
{
23+
"matchManagers": ["github-actions", "gradle-wrapper"],
24+
"groupName": "gradle and github actions"
25+
},
26+
{
27+
"matchDepTypes": ["plugin"],
28+
"groupName": "gradle and github actions"
29+
},
30+
{
31+
"matchPaths": ["build-logic/*", "buildSrc/*"],
32+
"groupName": "gradle and github actions"
33+
}
34+
],
35+
"semanticCommitType": "build",
36+
"commitMessagePrefix": "chore(deps): "
37+
}

0 commit comments

Comments
 (0)