-
Notifications
You must be signed in to change notification settings - Fork 67
Expand file tree
/
Copy pathrenovate.json
More file actions
38 lines (38 loc) · 1.1 KB
/
Copy pathrenovate.json
File metadata and controls
38 lines (38 loc) · 1.1 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
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [
"config:recommended",
":automergeMinor",
":automergePatch"
],
"automerge": true,
"automergeType": "pr",
"platformAutomerge": true,
"customManagers": [
{
"customType": "regex",
"description": "Keep the hardcoded mcr.microsoft.com/playwright image tag in sync with @playwright/test",
"managerFilePatterns": [
"/^Build/Scripts/runTests\\.sh$/",
"/^composer\\.json$/",
"/^composer\\.json\\.testing$/",
"/^\\.ddev/commands/host/test-e2e$/"
],
"matchStrings": [
"mcr\\.microsoft\\.com/playwright:(?<currentValue>[^\\s\"'\\\\]+)"
],
"depNameTemplate": "mcr.microsoft.com/playwright",
"datasourceTemplate": "docker"
}
],
"packageRules": [
{
"description": "Bump the Playwright npm package and the matching Playwright Docker image together so E2E browsers stay in sync",
"matchPackageNames": [
"@playwright/test",
"mcr.microsoft.com/playwright"
],
"groupName": "playwright"
}
]
}