chore(deps): pin pr-reviewer-plugin v0.17.0 — pause/resume + summon health#16
Merged
Conversation
…ealth 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) <noreply@anthropic.com>
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.
Brings v0.17.0:
@vera pause/resume, and a health endpoint for the summon surface.Why deploy this promptly
The GitHub App subscribes to
pull_requestonly — verified by reading/appwith an App JWT (APP EVENTS: ['pull_request']). So every summon has been silently unreachable since v0.15.0: correct code, no event, no error anywhere.Once the App gains
issue_commentandpull_request_review_comment:One request, instead of minting a JWT or opening the App settings page.
pause / resume
Stop reviewing a PR on push while it's being reworked — an explicit
@vera reviewstill runs, because "stop reviewing every push" and "never look at this again" are different requests.State rides in a marker on a posted comment, so GitHub is the store (ADR 0078 D5) and a container restart can't forget it. The last marker wins rather than a tally: pause → resume → pause ends paused.
Admin-gated like
review.PR_REVIEWER_SUMMON=falsedisables the whole surface including the pause check.270 tests. Merging deploys.
🤖 Generated with Claude Code