mirror of
https://code.forgejo.org/actions/setup-forgejo.git
synced 2025-02-20 23:13:29 -05:00
chore(renovate): fix config
This commit is contained in:
parent
096cb75589
commit
438f76b7e5
1 changed files with 8 additions and 5 deletions
|
@ -3,26 +3,29 @@
|
|||
"extends": ["local>actions/renovate-config"],
|
||||
"customManagers": [
|
||||
{
|
||||
"customType": "regex",
|
||||
"description": "update runner in RUNNER_VERSION",
|
||||
"fileMatch": ["RUNNER_VERSION"],
|
||||
"fileMatch": ["^RUNNER_VERSION$"],
|
||||
"matchStrings": ["^(?<currentValue>v\\d+\\.\\d+\\.\\d+)$"],
|
||||
"datasourceTemplate": "docker",
|
||||
"depNameTemplate": "data.forgejo.org/forgejo/runner"
|
||||
},
|
||||
{
|
||||
"customType": "regex",
|
||||
"description": "update runner in README.md",
|
||||
"fileMatch": ["README.md"],
|
||||
"fileMatch": ["^README.md$"],
|
||||
"matchStrings": [
|
||||
"| runner-version | .+? | (?<currentValue>v\\d+\\.\\d+\\.\\d+) |"
|
||||
"\\| runner-version \\| .+? \\| (?<currentValue>v\\d+\\.\\d+\\.\\d+) \\|"
|
||||
],
|
||||
"datasourceTemplate": "docker",
|
||||
"depNameTemplate": "data.forgejo.org/forgejo/runner"
|
||||
},
|
||||
{
|
||||
"customType": "regex",
|
||||
"description": "update runner in action.yml",
|
||||
"fileMatch": ["action.yml"],
|
||||
"fileMatch": ["^action.yml$"],
|
||||
"matchStrings": [
|
||||
"\\s+runner-version:\\s+description: .+?\\s+default: (?<currentValue>v\\d+\\.\\d+\\.\\d+)\\s"
|
||||
"\\s+runner-version:\\s+description: .+?\\s+default: '(?<currentValue>v\\d+\\.\\d+\\.\\d+)'\\s"
|
||||
],
|
||||
"datasourceTemplate": "docker",
|
||||
"depNameTemplate": "data.forgejo.org/forgejo/runner"
|
||||
|
|
Loading…
Add table
Reference in a new issue