42 lines
1.1 KiB
Plaintext
42 lines
1.1 KiB
Plaintext
{
|
|
"extends": ["config:base"],
|
|
"labels": ["dependencies"],
|
|
"packageRules": [
|
|
{
|
|
// automatically merge an update of runner
|
|
"matchPackageNames": ["actions/runner"],
|
|
"extractVersion": "^v(?<version>.*)$",
|
|
"automerge": true
|
|
}
|
|
],
|
|
"regexManagers": [
|
|
{
|
|
// use https://github.com/actions/runner/releases
|
|
"fileMatch": [
|
|
".github/workflows/runners.yml"
|
|
],
|
|
"matchStrings": ["RUNNER_VERSION: +(?<currentValue>.*?)\\n"],
|
|
"depNameTemplate": "actions/runner",
|
|
"datasourceTemplate": "github-releases"
|
|
},
|
|
{
|
|
"fileMatch": [
|
|
"runner/Makefile",
|
|
"Makefile"
|
|
],
|
|
"matchStrings": ["RUNNER_VERSION \\?= +(?<currentValue>.*?)\\n"],
|
|
"depNameTemplate": "actions/runner",
|
|
"datasourceTemplate": "github-releases"
|
|
},
|
|
{
|
|
"fileMatch": [
|
|
"runner/Dockerfile",
|
|
"runner/Dockerfile.dindrunner"
|
|
],
|
|
"matchStrings": ["RUNNER_VERSION=+(?<currentValue>.*?)\\n"],
|
|
"depNameTemplate": "actions/runner",
|
|
"datasourceTemplate": "github-releases"
|
|
}
|
|
]
|
|
}
|