summarylogtreecommitdiffstats
path: root/renovate.json
diff options
context:
space:
mode:
authorJohannes Wienke2021-10-02 19:02:52 +0200
committerJohannes Wienke2021-10-02 19:02:52 +0200
commit20d6448ec25953c929e637767ab1b201f1152454 (patch)
tree8b0562e620ceb919ed4139422742a8079e71ee76 /renovate.json
parentf74fe5f33b0fba5e7c4f95726d88fd9773f70a2a (diff)
downloadaur-20d6448ec25953c929e637767ab1b201f1152454.tar.gz
ci: add a renovate config
Diffstat (limited to 'renovate.json')
-rw-r--r--renovate.json25
1 files changed, 25 insertions, 0 deletions
diff --git a/renovate.json b/renovate.json
new file mode 100644
index 000000000000..9b513219f014
--- /dev/null
+++ b/renovate.json
@@ -0,0 +1,25 @@
+{
+ "$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"
+ ],
+ "depNameTemplate": "mopidy/mopidy-alsamixer",
+ "datasourceTemplate": "github-tags"
+ }
+ ]
+}