Make claude-code-review workflow configurable#101
Merged
francoisferrand merged 5 commits intomainfrom Apr 20, 2026
Merged
Conversation
Issue: ZENKO-5260
If there is a local skill, it will be used instead. This also allows to configure the plugins to load from agent-hub, and thus use them from the skill. Issue: ZENKO-5260
The `summary-mode` input can be set to pass the PUBLISH_MODE variable to the plugin, and choose if summary should be posted as comment or check. Issue: ZENKO-5260
This is useful for testing a skill before it is merged. Unfortunately, passing a git branch is not supported (yet) in the claude-code-plugin, so we need to do a checkout manually. Issue: ZENKO-5260
Should not be needed, but some existing skill may not have the correct values: so keeping existing default for compatibility. Issue: ZENKO-5260
JBWatenbergScality
approved these changes
Apr 20, 2026
| model: | ||
| type: string | ||
| description: Claude model to use for the review | ||
| default: claude-opus-4-6 |
Contributor
Author
There was a problem hiding this comment.
not sure : I prefer to be conservative for now, can be more easily changed/tested afterwards...
maeldonn
approved these changes
Apr 20, 2026
tcarmet
reviewed
Apr 20, 2026
| id: app-token | ||
| uses: actions/create-github-app-token@v3 | ||
| with: | ||
| app-id: ${{ vars.ACTIONS_APP_ID }} |
Contributor
There was a problem hiding this comment.
I think this one should have technically be a input, if it works great, but technically the workflow should be given all its parameter. (even if we unfortunately add an extra one here).
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.
Improve the claude-code-review workflow to be configurable:
allowedTools. These are actually not required in the workflow, as they are already in the skill;however keep them for compatibility with already deployed skills.
Testing changes from the agent-hub can be done quite easily, for exemple the following script in zenko uses both the workflow and agent-hub PRs. It can even be triggered manually on another PR -which is why we need the extra allowed-tools- for testing:
Issue: ZENKO-5260