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
6 changes: 5 additions & 1 deletion .github/workflows/pr-review-reusable.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ on:
description: Path to the trusted review skill in the caller repository
required: false
type: string
default: .github/skills/pr-review/SKILL.md
default: ''
secrets:
VERTEX_AI_SERVICE_ACCOUNT_KEY:
required: true
Expand Down Expand Up @@ -47,7 +47,11 @@ jobs:
ref: ${{ inputs.harness-ref }}
path: harness
persist-credentials: false
- name: Prepare default review skill
working-directory: harness
run: install -D -m 0644 examples/github-pr-reviewer/skills/pr-review/SKILL.md skills/pr-review/SKILL.md
- name: Install caller skill
if: inputs.skill-path != ''
env:
SKILL_PATH: ${{ inputs.skill-path }}
run: |
Expand Down
Loading