blob: bc5ca2d9bcf690cfe19ccaf3aa09a8a274fcbdda (
plain)
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
|
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": ["config:base"],
"assignees": ["languitar"],
"reviewers": ["languitar"],
"postUpgradeTasks": {
"commands": ["./post-update.sh"],
"fileFilters": ["PKGBUILD", ".SRCINFO"],
"executionMode": "branch"
},
"regexManagers": [
{
"fileMatch": ["^PKGBUILD$"],
"matchStrings": [
"pkgver=(?<currentValue>.*?)\n"
],
"matchStringsStrategy": "combination",
"depNameTemplate": "eclipse/eclipse.jdt.ls",
"datasourceTemplate": "github-tags",
"extractVersionTemplate": "^v(?<version>.*)$"
}
]
}
|