mirror of
https://github.com/actions/actions-runner-controller.git
synced 2025-12-10 11:41:27 +00:00
* ci: remove Ubuntu 18.04 runner Co-authored-by: toast-gear <toast-gear@users.noreply.github.com>
23 lines
587 B
Plaintext
23 lines
587 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/runners.yml"
|
|
],
|
|
"matchStrings": ["RUNNER_VERSION: +(?<currentValue>.*?)\\n"],
|
|
"depNameTemplate": "actions/runner",
|
|
"datasourceTemplate": "github-releases"
|
|
}
|
|
]
|
|
} |