From 2d9bdedb41110bca7a84f67d5b86f32b58419378 Mon Sep 17 00:00:00 2001 From: Brian O'Kelley Date: Sat, 18 Jul 2026 20:50:12 -0400 Subject: [PATCH] fix: let Argus review routine changesets --- .github/workflows/ai-review.yml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ai-review.yml b/.github/workflows/ai-review.yml index b688988a9c..54474b9bf1 100644 --- a/.github/workflows/ai-review.yml +++ b/.github/workflows/ai-review.yml @@ -184,7 +184,10 @@ jobs: # .agents/** — agent prompts & context (prompt-injection # would target these to expand the agent's capabilities). # static/schemas/source/** — protocol source of truth for the spec. - # .changeset/** — release tooling. + # .changeset/config.json, .changeset/pre.json — release configuration and + # prerelease state. Routine .changeset/*.md release notes remain reviewable + # so the required changeset policy does not prevent Argus from approving + # otherwise eligible PRs. # # Even though pull_request_target keeps this run on the base-branch # prompt and workflow, a human should own these changes. Bail with a @@ -209,7 +212,7 @@ jobs: MODIFIED="" while IFS= read -r f; do case "$f" in - .github/ai-review/*|.github/workflows/ai-review.yml|.agents/*|.github/workflows/*|static/schemas/source/*|.changeset/*) + .github/ai-review/*|.github/workflows/ai-review.yml|.agents/*|.github/workflows/*|static/schemas/source/*|.changeset/config.json|.changeset/pre.json) MODIFIED="${MODIFIED}${f}"$'\n' ;; esac