This is an automated email from the ASF dual-hosted git repository. jamesbognar pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/juneau.git
commit 7052d5820bc05ccdd2ee731ae97b725f771a5982 Author: James Bognar <[email protected]> AuthorDate: Sun Aug 16 10:25:42 2026 -0400 Point push.py starter verify paths at the apache sibling clones. The compile gate follows the starters onto ~/git/apache/juneau-microservice-*-starter and no longer defers Docker/Docusaurus checks to GitHub Actions. --- scripts/push.py | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/scripts/push.py b/scripts/push.py index c2ce2249b1..83ae7ba70a 100755 --- a/scripts/push.py +++ b/scripts/push.py @@ -55,12 +55,13 @@ from pathlib import Path # starter repos against that local install to recover the downstream-consumer compile/test guard that # externalizing the starters would otherwise lose. Edit this list to match your local checkout locations. # A path that does not exist is SKIPPED WITH A WARNING (not a failure). Any PRESENT starter that fails to -# build fails the push. Docker / Docusaurus validation is left to each repo's own GitHub Actions CI. +# build fails the push. There is no GitHub Actions CI on these branches; this script is the compile gate. +# Docker image builds are not part of this gate. # ---------------------------------------------------------------------------------------------------------------------- STARTER_REPO_PATHS = [ - Path.home() / "git" / "jamesbognar" / "juneau-microservice-jetty-starter", - Path.home() / "git" / "jamesbognar" / "juneau-microservice-springboot-starter", - Path.home() / "git" / "jamesbognar" / "juneau-microservice-tomcat-starter", + Path.home() / "git" / "apache" / "juneau-microservice-jetty-starter", + Path.home() / "git" / "apache" / "juneau-microservice-springboot-starter", + Path.home() / "git" / "apache" / "juneau-microservice-tomcat-starter", ]
