ci: point the @since reconciliation at the real module source roots (#258) (CP: 25.3) - #259
Merged
Merged
Conversation
…258) ## Summary The `@since` tag workflow never updated anything, because it looked for source files in folders that do not exist. This change tells it where each module's sources really live, so the workflow can do its job again. ## What changed This is a CI-only change. No production code, no API change, nothing for users of the library to adapt. - The `reconcile-since-tags` action assumes each artifact's sources are in `<artifactId>/src/main/java`. Our directories are named after the module (`shared`, `junit6`, `spring`, `quarkus`), not after the published artifact, so every source root was missing and all four modules were skipped. The workflow then finished in under a minute with no changes and no pull request. - The `artifacts` list in `.github/workflows/update-since-tags.yml` now spells out each source root with the action's `<artifact>=<source-root>` syntax. A local run reconciles 39 files. - Added `.since-index` to `.gitignore` so the local index the action writes is not committed by accident. Co-authored-by: totally-not-ai[bot] <290682512+totally-not-ai[bot]@users.noreply.github.com> Co-authored-by: Claude Opus 5 (1M context) <noreply@anthropic.com>
Artur-
enabled auto-merge (squash)
September 22, 2026 10:20
Artur-
approved these changes
Sep 22, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This PR cherry-picks changes from the original PR #258 to branch 25.3.
Original PR description