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
7 changes: 5 additions & 2 deletions .github/workflows/ai-review.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand Down
Loading