Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion .tekton/paco.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,8 @@ spec:
value: "{{git_auth_secret}}"
- name: model
value: "google-vertex-anthropic/claude-sonnet-4-6@default"
- name: reasoning_effort
value: "high"
- name: vertex_credentials_secret
value: "paco-vertex-credentials"
- name: vertex_credentials_key
Expand All @@ -48,6 +50,8 @@ spec:
- name: git_auth_secret
- name: model
default: "google-vertex-anthropic/claude-sonnet-4-6@default"
- name: reasoning_effort
default: "high"
- name: vertex_credentials_secret
default: "paco-vertex-credentials"
- name: vertex_credentials_key
Expand Down Expand Up @@ -103,7 +107,8 @@ spec:
mkdir -p "${HOME}"
paco review \
--workspace "$(workspaces.source.path)" \
--model "$(params.model)"
--model "$(params.model)" \
--reasoning-effort "$(params.reasoning_effort)"
Comment thread
chmouel marked this conversation as resolved.

- name: post-review
displayName: "Post review to the pull request"
Expand Down