mirror of
https://github.com/actions/actions-runner-controller.git
synced 2025-12-25 02:59:14 +08:00
* ci: add label to renovate pull requests * ci: updating stale config to exempt new label
22 lines
588 B
Plaintext
22 lines
588 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/build-and-release-runners.yml"],
|
|
"matchStrings": ["RUNNER_VERSION: +(?<currentValue>.*?)\\n"],
|
|
"depNameTemplate": "actions/runner",
|
|
"datasourceTemplate": "github-releases"
|
|
}
|
|
]
|
|
}
|