mirror of
https://github.com/actions/actions-runner-controller.git
synced 2026-01-11 13:18:48 +08:00
25 lines
655 B
Plaintext
25 lines
655 B
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/ubuntu-18-04-runners.yml",
|
|
".github/workflows/ubuntu-20-04-runners.yml"
|
|
],
|
|
"matchStrings": ["RUNNER_VERSION: +(?<currentValue>.*?)\\n"],
|
|
"depNameTemplate": "actions/runner",
|
|
"datasourceTemplate": "github-releases"
|
|
}
|
|
]
|
|
}
|