Migrate CI to 3-job pipeline: lint → build+test → push
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

This commit is contained in:
2026-06-09 13:32:57 -04:00
committed by Sagent
3 changed files with 93 additions and 39 deletions
+9 -7
View File
@@ -1,19 +1,21 @@
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"customManagers": [
"regexManagers": [
{
"customType": "regex",
"description": "Track openchamber base Docker image FROM jcabillot/opencode",
"managerFilePatterns": ["/^Dockerfile$/"],
"matchStrings": ["FROM jcabillot/opencode:(?<currentValue>[^\\s]+)"],
"fileMatch": ["^Dockerfile$"],
"matchStrings": [
"FROM jcabillot/opencode:(?<currentValue>[^\\s]+)"
],
"depNameTemplate": "jcabillot/opencode",
"datasourceTemplate": "docker"
},
{
"customType": "regex",
"description": "Track @openchamber/web npm version from ARG in Dockerfile",
"managerFilePatterns": ["/^Dockerfile$/"],
"matchStrings": ["ARG OPENCHAMBER_WEB_VERSION=(?<currentValue>[^\\s]+)"],
"fileMatch": ["^Dockerfile$"],
"matchStrings": [
"ARG OPENCHAMBER_WEB_VERSION=(?<currentValue>[^\\s]+)"
],
"depNameTemplate": "@openchamber/web",
"datasourceTemplate": "npm",
"versioningTemplate": "npm"