From 7449e204a405b40e294739cf56586aebca0888fd Mon Sep 17 00:00:00 2001 From: "ellipsis-dev[bot]" Date: Wed, 29 Jul 2026 13:39:55 +0000 Subject: [PATCH] Add code review pipeline for Hunter's and Ellipsis-authored PRs Runs the platform's default review pipeline on PRs in this repo authored by hbrooks or ellipsis-dev[bot], mirroring the reviewer config in ellipsis-dev/ellipsis. Co-Authored-By: Claude Fable 5 --- agents/code_review.yaml | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 agents/code_review.yaml diff --git a/agents/code_review.yaml b/agents/code_review.yaml new file mode 100644 index 0000000..c48b00a --- /dev/null +++ b/agents/code_review.yaml @@ -0,0 +1,21 @@ +ellipsis: + version: v1 + kind: code_review + name: Code Reviewer + description: Reviews new commits on Hunter's and Ellipsis-authored pull requests +# Stages are deliberately left unset so this runs the platform's default +# pipeline, same as the reviewer in ellipsis-dev/ellipsis. +pull_requests: + # Watch only this repo — the ellipsis repo has its own pipeline, and at most + # one enabled pipeline may watch a PR. + repositories: + - cli + # Only Hunter's PRs and PRs the Ellipsis agent opens. Bot authors match on + # the literal GitHub login, which carries the [bot] suffix. + for: + users: [hbrooks] + bots: ["ellipsis-dev[bot]"] +budget: + run: 10.00 + day: 100.00 + week: 400.00