forked from diggsweden/devbase-check
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrenovate.json
More file actions
100 lines (100 loc) · 2.49 KB
/
renovate.json
File metadata and controls
100 lines (100 loc) · 2.49 KB
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [
"local>diggsweden/.github:renovate-base"
],
"enabledManagers": [
"github-actions",
"mise",
"custom.regex"
],
"packageRules": [
{
"description": "Code quality and linting tools",
"matchManagers": [
"mise"
],
"matchPackageNames": [
"aqua:koalaman/shellcheck",
"aqua:mvdan/sh",
"aqua:google/yamlfmt",
"ubi:rvben/rumdl",
"aqua:hadolint/hadolint"
],
"addLabels": [
"linting"
],
"groupName": "linting tools"
},
{
"description": "Security and compliance tools",
"matchManagers": [
"mise"
],
"matchPackageNames": [
"aqua:zricethezav/gitleaks",
"aqua:siderolabs/conform",
"aqua:rhysd/actionlint",
"pipx:reuse"
],
"addLabels": [
"security"
],
"groupName": "security tools"
},
{
"description": "Testing tools",
"matchManagers": [
"mise"
],
"matchPackageNames": [
"aqua:bats-core/bats-core"
],
"addLabels": [
"testing"
],
"groupName": "testing tools"
}
],
"customManagers": [
{
"customType": "regex",
"managerFilePatterns": [
"/tests/setup-bats-libs\\.sh$/"
],
"description": "Update BATS helper library versions (bats-core)",
"matchStrings": [
"\\[\"(?<depName>bats-support|bats-assert|bats-file)\"\\]=\"(?<currentValue>v[0-9.]+)\""
],
"datasourceTemplate": "github-tags",
"packageNameTemplate": "bats-core/{{{depName}}}",
"versioningTemplate": "semver"
},
{
"customType": "regex",
"managerFilePatterns": [
"/tests/setup-bats-libs\\.sh$/"
],
"description": "Update bats-mock version",
"matchStrings": [
"\\[\"(?<depName>bats-mock)\"\\]=\"(?<currentValue>v[0-9.]+)\""
],
"datasourceTemplate": "github-tags",
"packageNameTemplate": "jasonkarns/{{{depName}}}",
"versioningTemplate": "semver"
},
{
"customType": "regex",
"managerFilePatterns": [
"/tests/.+\\.bats$/"
],
"description": "Update BATS minimum version requirement",
"matchStrings": [
"bats_require_minimum_version (?<currentValue>[0-9.]+)"
],
"datasourceTemplate": "github-tags",
"depNameTemplate": "bats-core/bats-core",
"versioningTemplate": "semver"
}
]
}