Stop compiling Java in dependency update workflow#1594
Merged
Conversation
The dependency update workflow should only refresh dependencies and generated sources. Remove the Java compile validation step so compilation failures are handled by normal CI instead of blocking update PR creation. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
Contributor
There was a problem hiding this comment.
Pull request overview
This PR adjusts the update-copilot-dependency GitHub Actions workflow to focus strictly on dependency refresh + code generation, and to avoid failing the automated update workflow due to handwritten Java compilation issues that should be handled by normal Java CI (or follow-up adaptation work).
Changes:
- Removed the Java compilation validation step (
mvn compile -Pskip-test-harness) from the dependency update workflow. - Kept Java code generation (
mvn generate-sources -Pcodegen) as part of the automated update process.
Show a summary per file
| File | Description |
|---|---|
| .github/workflows/update-copilot-dependency.yml | Removes Java compile validation so dependency update PR automation doesn’t fail on handwritten Java compilation errors. |
Copilot's findings
- Files reviewed: 1/1 changed files
- Comments generated: 0
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.
The dependency update workflow should only refresh dependencies and generated sources, then open the update PR. The removed Java compile validation step was causing update automation to fail on handwritten Java compilation errors that belong in normal Java CI or follow-up adaptation work.
This keeps Java codegen in place (
mvn generate-sources -Pcodegen) but removes the subsequentmvn compile -Pskip-test-harnessstep, so the workflow no longer performs compilation for any language.Generated by Copilot