summarylogtreecommitdiffstats
path: root/renovate.json
blob: 1bfb3e4b0888b8ad9cc9e0a035559d5e00f29212 (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-releases",
      "extractVersionTemplate": "^v(?<version>.*)$"
    }
  ]
}