mirror of
https://code.forgejo.org/actions/setup-forgejo
synced 2025-03-15 14:44:38 +01:00
Migrate config renovate.json
This commit is contained in:
parent
096cb75589
commit
b6eaeb11c4
1 changed files with 18 additions and 5 deletions
|
@ -1,17 +1,27 @@
|
||||||
{
|
{
|
||||||
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
|
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
|
||||||
"extends": ["local>actions/renovate-config"],
|
"extends": [
|
||||||
|
"local>actions/renovate-config"
|
||||||
|
],
|
||||||
"customManagers": [
|
"customManagers": [
|
||||||
{
|
{
|
||||||
|
"customType": "regex",
|
||||||
"description": "update runner in RUNNER_VERSION",
|
"description": "update runner in RUNNER_VERSION",
|
||||||
"fileMatch": ["RUNNER_VERSION"],
|
"fileMatch": [
|
||||||
"matchStrings": ["^(?<currentValue>v\\d+\\.\\d+\\.\\d+)$"],
|
"RUNNER_VERSION"
|
||||||
|
],
|
||||||
|
"matchStrings": [
|
||||||
|
"^(?<currentValue>v\\d+\\.\\d+\\.\\d+)$"
|
||||||
|
],
|
||||||
"datasourceTemplate": "docker",
|
"datasourceTemplate": "docker",
|
||||||
"depNameTemplate": "data.forgejo.org/forgejo/runner"
|
"depNameTemplate": "data.forgejo.org/forgejo/runner"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
"customType": "regex",
|
||||||
"description": "update runner in README.md",
|
"description": "update runner in README.md",
|
||||||
"fileMatch": ["README.md"],
|
"fileMatch": [
|
||||||
|
"README.md"
|
||||||
|
],
|
||||||
"matchStrings": [
|
"matchStrings": [
|
||||||
"| runner-version | .+? | (?<currentValue>v\\d+\\.\\d+\\.\\d+) |"
|
"| runner-version | .+? | (?<currentValue>v\\d+\\.\\d+\\.\\d+) |"
|
||||||
],
|
],
|
||||||
|
@ -19,8 +29,11 @@
|
||||||
"depNameTemplate": "data.forgejo.org/forgejo/runner"
|
"depNameTemplate": "data.forgejo.org/forgejo/runner"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
"customType": "regex",
|
||||||
"description": "update runner in action.yml",
|
"description": "update runner in action.yml",
|
||||||
"fileMatch": ["action.yml"],
|
"fileMatch": [
|
||||||
|
"action.yml"
|
||||||
|
],
|
||||||
"matchStrings": [
|
"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"
|
||||||
],
|
],
|
||||||
|
|
Loading…
Add table
Reference in a new issue