-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathrenovate.json
More file actions
42 lines (42 loc) · 1.19 KB
/
Copy pathrenovate.json
File metadata and controls
42 lines (42 loc) · 1.19 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
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [
"config:recommended"
],
"lockFileMaintenance": {
"description": "Keep the npm lockfile up to date, merging if tests pass",
"enabled": true,
"automerge": true
},
"pre-commit": {
"enabled": true
},
"packageRules": [
{
"description": "Group non-major GitHub Actions updates into a single PR",
"groupName": "GitHub Actions",
"matchManagers": [
"github-actions"
],
"matchUpdateTypes": [
"patch",
"minor"
]
}
],
"customManagers": [
{
"customType": "regex",
"description": "Bump the actionlint pinned in _lint.yml. Renovate cannot compute the tarball's sha256, so ACTIONLINT_SHA256 has to be updated by hand in the same PR \u2014 until it is, the lint job fails the checksum and goes red.",
"managerFilePatterns": [
"/^\\.github/workflows/_lint\\.yml$/"
],
"matchStrings": [
"ACTIONLINT_VERSION: (?<currentValue>\\S+)"
],
"depNameTemplate": "rhysd/actionlint",
"datasourceTemplate": "github-releases",
"extractVersionTemplate": "^v(?<version>.+)$"
}
]
}