Files
opencode-openchamber/renovate.json
T
jcabillot eb1c7f30a6
Docker Build and Push / lint (pull_request) Successful in 7s
Docker Build and Push / build-and-test (pull_request) Successful in 2m9s
Docker Build and Push / push (pull_request) Has been skipped
Migrate CI to 3-job pipeline: lint → build+test → push
2026-06-11 12:48:31 +00:00

25 lines
746 B
JSON

{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"regexManagers": [
{
"description": "Track openchamber base Docker image FROM jcabillot/opencode",
"fileMatch": ["^Dockerfile$"],
"matchStrings": [
"FROM jcabillot/opencode:(?<currentValue>[^\\s]+)"
],
"depNameTemplate": "jcabillot/opencode",
"datasourceTemplate": "docker"
},
{
"description": "Track @openchamber/web npm version from ARG in Dockerfile",
"fileMatch": ["^Dockerfile$"],
"matchStrings": [
"ARG OPENCHAMBER_WEB_VERSION=(?<currentValue>[^\\s]+)"
],
"depNameTemplate": "@openchamber/web",
"datasourceTemplate": "npm",
"versioningTemplate": "npm"
}
]
}