Conversation
jack-edmonds-dd
approved these changes
Sep 8, 2025
7536ee5 to
63fd050
Compare
b0d691a to
8850011
Compare
752f4ae to
ce0f803
Compare
amaskara-dd
approved these changes
Sep 18, 2025
ce0f803 to
4215089
Compare
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.

Context
This PR implements the CI workflow modernization for the java client by converting all CI jobs to reusable workflows. This aligns the java client with the established pattern from the Go clients (see PR) and enables centralized CI management for the datadog-api-spec repository.
This work enables:
test.ymlmaintains the familiar individual job structure while leveraging reusable componentsChanges
New Files
.github/workflows/reusable-ci.yml: Complete CI workflow that orchestrates all validation steps - the single entry point for external repos.github/workflows/reusable-pre-commit.yml: Pre-commit checks with configurable auto-commit behavior and fork handling.github/workflows/reusable-examples.yml: Example code validation workflowModified Files
.github/workflows/test.yml: Refactored to call individual reusable workflows (maintains familiar structure).github/workflows/reusable-java-test.yml: Stripped to contain only core testing logic, enhanced with target-branch supportKey Design Decisions
reusable-ci.ymlfor simplicityTests
This PR maintains 100% functional equivalence with the original CI behavior:
Local Repository (test.yml)
Reusable Workflows
reusable-java-test.ymlAfter merging, this will be tested end-to-end by calling the reusable workflows from the datadog-api-spec repository to validate generated client code, ensuring full MergeQueue compatibility.