🔧 add CI workflow checker#333
Merged
Merged
Conversation
There was a problem hiding this comment.
Pull request overview
This PR introduces an additional CI gate to lint GitHub Actions workflows and makes a few workflow hardening/cleanup adjustments across existing CI/release pipelines.
Changes:
- Add a reusable “workflow lint” workflow and wire it into the PR CI pipeline as a prerequisite for static analysis/build steps.
- Adjust scheduled (cron) workflow permissions and refine CodeQL workflow configuration/formatting.
- Improve shell robustness in publishing/docs workflows (GPG key import command and jar path quoting).
Reviewed changes
Copilot reviewed 7 out of 7 changed files in this pull request and generated 5 comments.
Show a summary per file
| File | Description |
|---|---|
| .github/workflows/pull-request.yml | Adds a workflow-lint reusable job and makes static analysis depend on it. |
| .github/workflows/cron.yml | Expands workflow token permissions for scheduled runs (needs least-privilege tightening). |
| .github/workflows/_workflow_lint.yml | New reusable workflow running actionlint (currently downloads/executes remote script). |
| .github/workflows/_publish-docs.yml | Tweaks delombok jar invocation quoting. |
| .github/workflows/_publish-code.yml | Changes how the GPG secret key is piped into gpg --import. |
| .github/workflows/_codeql.yml | Cleans up CodeQL workflow content/format and sets language to Java explicitly. |
| .github/workflows/_build.yml | Changes how the GPG secret key is piped into gpg --import during build/tests. |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
ianardee
approved these changes
Jun 17, 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.
Description
Types of changes