From a231782c44d9f37513378a8db2119741b6e0cdc3 Mon Sep 17 00:00:00 2001 From: GitHub CI Date: Thu, 23 Jul 2026 02:59:32 -0700 Subject: [PATCH] =?UTF-8?q?chore(deps):=20pin=20pr-reviewer-plugin=20v0.17?= =?UTF-8?q?.0=20=E2=80=94=20pause/resume=20+=20summon=20health?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit v0.17.0 adds `@vera pause` / `resume` (marker-based state, so GitHub is the store and a restart cannot forget it) and `GET /api/plugins/pr-reviewer/ summon/health`. That health endpoint is the point of deploying this promptly: the GitHub App subscribes to `pull_request` only, so every summon has been silently unreachable since v0.15.0 — correct code, no event, no error. Once the App gains `issue_comment` + `pull_request_review_comment`, the endpoint confirms it in one request instead of a JWT and a settings page. Co-Authored-By: Claude Opus 4.8 (1M context) --- Dockerfile | 2 +- protoagent.bundle.yaml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 9321923..8ac2f2e 100644 --- a/Dockerfile +++ b/Dockerfile @@ -31,7 +31,7 @@ ARG GITHUB_PLUGIN_REF=v0.3.0 RUN git clone --depth 1 --branch "${GITHUB_PLUGIN_REF}" \ https://github.com/protoLabsAI/github-plugin.git /opt/protoagent/plugins/github \ && rm -rf /opt/protoagent/plugins/github/.git -ARG PR_REVIEWER_PLUGIN_REF=v0.16.0 +ARG PR_REVIEWER_PLUGIN_REF=v0.17.0 RUN git clone --depth 1 --branch "${PR_REVIEWER_PLUGIN_REF}" \ https://github.com/protoLabsAI/pr-reviewer-plugin.git /opt/protoagent/plugins/pr-reviewer \ && rm -rf /opt/protoagent/plugins/pr-reviewer/.git diff --git a/protoagent.bundle.yaml b/protoagent.bundle.yaml index 8ab513d..4ec5a83 100644 --- a/protoagent.bundle.yaml +++ b/protoagent.bundle.yaml @@ -30,7 +30,7 @@ verified_against: 0.108.0 plugins: - { id: workflows, builtin: true } # the recipe engine (code-review panels run through it) - { id: github, url: https://github.com/protoLabsAI/github-plugin, ref: v0.3.0 } - - { id: pr-reviewer, url: https://github.com/protoLabsAI/pr-reviewer-plugin, ref: v0.16.0 } + - { id: pr-reviewer, url: https://github.com/protoLabsAI/pr-reviewer-plugin, ref: v0.17.0 } enabled: [workflows, github, pr-reviewer] # suggested turn-on list (applied to plugins.enabled)