Croway opened a new pull request, #1937: URL: https://github.com/apache/camel-spring-boot/pull/1937
The PR build workflow runs the full incremental build once per JDK, so every push to a PR enqueues three jobs (17, 21, 25). With the current volume of open PRs the queue backs up and reviewers wait on checks. JDK 17 is the minimum supported version (#1718) and JDK 25 is the latest LTS, so the two of them bound what a JDK 21 run would catch. This change drops 21 from the matrix, cutting every PR's CI cost by a third. ```diff - java: ['17', '21', '25'] + java: ['17', '25'] ``` Only `pr-build-main.yml` has a JDK matrix; the sync and SBOM workflows already run on a fixed JDK 17 and are unchanged. Existing open PRs keep the three-job matrix until they are rebased on `main`. _Claude Code on behalf of Federico Mariani_ -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
