Files
KaTeX/renovate.json
ylemkimon 2d484a9769 ci(renovate): update screenshotter browser, .flowconfig, editor SDKs, and Actions (#2516)
* ci(renovate): update screenshotter browser image

* ci(renovate): update .flowconfig and Yarn editor SDKs

* ci(renovate): remove unnecessary option

* ci(renovate): do not skip netlify for website updates

* ci(renovate): update GitHub Actions in workflows

* ci(renovate): fix skip netlify
2020-09-22 13:43:28 +09:00

55 lines
1.6 KiB
JSON

{
"extends": [
"config:base",
":dependencyDashboard",
":automergeMinor",
":prNotPending",
"group:linters"
],
"git-submodules": {
"enabled": true
},
"lockFileMaintenance": {
"enabled": true,
"schedule": ["at any time"],
"stabilityDays": 0,
"dependencyDashboardApproval": true
},
"ignorePaths": ["dockers/texcmp/"],
"regexManagers": [
{
"fileMatch": ["^\\.github/workflows/[^/]+\\.ya?ml$"],
"matchStrings": ["uses: (?<depName>.*?)@(?<currentValue>.*?)\\s"],
"datasourceTemplate": "github-tags",
"versioningTemplate": "regex:^v(?<major>\\d+)$"
},
{
"fileMatch": [
"^\\.github/workflows/ci\\.yml$",
"^dockers/screenshotter/screenshotter\\.sh$"
],
"matchStrings": ["\"(?<browserTag>[a-z]*):(?<currentValue>[\\d.\\-]*)\""],
"datasourceTemplate": "docker",
"depNameTemplate": "selenium/standalone-{{browserTag}}",
"versioningTemplate": "regex:^3\\.141\\.59-(?<patch>\\d+)$"
}, {
"fileMatch": ["^\\.flowconfig$"],
"matchStrings": ["\\[version\\]\\s*(?<currentValue>.*?)\\s"],
"datasourceTemplate": "npm",
"depNameTemplate": "flow-bin"
}, {
"fileMatch": ["^\\.yarn/sdks/[^/]+/package\\.json$"],
"matchStrings": ["\"name\": \"(?<depName>.*?)\",\\s*\"version\": \"(?<currentValue>.*?)-pnpify\""],
"datasourceTemplate": "npm"
}
],
"stabilityDays": 3,
"rangeStrategy": "update-lockfile",
"commitMessageSuffix": "[skip netlify]",
"postUpdateOptions": ["yarnDedupeHighest"],
"packageRules": [{
"paths": ["website/**"],
"commitMessageSuffix": ""
}]
}