summarylogtreecommitdiffstats
path: root/renovate.json
blob: 630d4773eb8cb3866fffe0e72a85b8e448e31c45 (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
{
  "$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": "yaml-language-server",
      "datasourceTemplate": "npm"
    }
  ]
}