setup-forgejo/renovate.json

35 lines
1.3 KiB
JSON
Raw Normal View History

2024-11-20 13:31:15 +00:00
{
2025-01-30 11:58:21 +01:00
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": ["local>actions/renovate-config"],
"customManagers": [
{
2025-01-30 12:09:02 +01:00
"customType": "regex",
2025-01-30 11:58:21 +01:00
"description": "update runner in RUNNER_VERSION",
2025-01-30 12:09:02 +01:00
"fileMatch": ["^RUNNER_VERSION$"],
2025-01-30 11:58:21 +01:00
"matchStrings": ["^(?<currentValue>v\\d+\\.\\d+\\.\\d+)$"],
"datasourceTemplate": "docker",
"depNameTemplate": "data.forgejo.org/forgejo/runner"
},
{
2025-01-30 12:09:02 +01:00
"customType": "regex",
2025-01-30 11:58:21 +01:00
"description": "update runner in README.md",
2025-01-30 12:09:02 +01:00
"fileMatch": ["^README.md$"],
2025-01-30 11:58:21 +01:00
"matchStrings": [
2025-01-30 12:09:02 +01:00
"\\| runner-version \\| .+? \\| (?<currentValue>v\\d+\\.\\d+\\.\\d+) \\|"
2025-01-30 11:58:21 +01:00
],
"datasourceTemplate": "docker",
"depNameTemplate": "data.forgejo.org/forgejo/runner"
},
{
2025-01-30 12:09:02 +01:00
"customType": "regex",
2025-01-30 11:58:21 +01:00
"description": "update runner in action.yml",
2025-01-30 12:09:02 +01:00
"fileMatch": ["^action.yml$"],
2025-01-30 11:58:21 +01:00
"matchStrings": [
2025-01-30 12:09:02 +01:00
"\\s+runner-version:\\s+description: .+?\\s+default: '(?<currentValue>v\\d+\\.\\d+\\.\\d+)'\\s"
2025-01-30 11:58:21 +01:00
],
"datasourceTemplate": "docker",
"depNameTemplate": "data.forgejo.org/forgejo/runner"
}
]
2024-11-20 13:31:15 +00:00
}