mirror of
https://github.com/actions/actions-runner-controller.git
synced 2025-12-15 22:47:13 +00:00
20 lines
557 B
Plaintext
20 lines
557 B
Plaintext
{
|
|
"extends": ["config:base"],
|
|
"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/build-and-release-runners.yml"],
|
|
"matchStrings": ["RUNNER_VERSION: +(?<currentValue>.*?)\\n"],
|
|
"depNameTemplate": "actions/runner",
|
|
"datasourceTemplate": "github-releases"
|
|
}
|
|
]
|
|
} |