-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrenovate.json
46 lines (46 loc) · 1.18 KB
/
renovate.json
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
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [
"config:recommended",
"helpers:pinGitHubActionDigests",
"customManagers:githubActionsVersions",
"npm:unpublishSafe",
":maintainLockFilesMonthly",
":pinVersions"
],
"pre-commit": {
"enabled": true
},
"reviewers": ["fluxth"],
"timezone": "Asia/Tokyo",
"schedule": ["before 7am on saturday"],
"prHourlyLimit": 0,
"prConcurrentLimit": 0,
"packageRules": [
{
"description": "Auto-merge GitHub Actions patch and digest updates",
"matchUpdateTypes": ["patch", "digest"],
"matchManagers": ["github-actions"],
"automerge": true,
"automergeType": "pr",
"automergeStrategy": "squash"
},
{
"description": "Auto-merge testable NPM updates",
"matchUpdateTypes": ["minor", "patch", "digest"],
"matchManagers": ["npm"],
"matchPackageNames": [
"vitest",
"svelte-check",
"typescript",
"tslib",
"eslint{/,}**",
"typescript-eslint{/,}**",
"prettier{/,}**"
],
"automerge": true,
"automergeType": "pr",
"automergeStrategy": "squash"
}
]
}