diff --git a/.github/workflows/pr-review.yml b/.github/workflows/pr-review.yml index d77ec39..a795147 100644 --- a/.github/workflows/pr-review.yml +++ b/.github/workflows/pr-review.yml @@ -3,11 +3,12 @@ name: PR Review on: pull_request: types: [opened, synchronize] - # Customize per project — common defaults below. - paths-ignore: - - '**/*.md' - - 'docs/**' - - 'LICENSE' + # No paths-ignore by default. Claude self-skips docs/config-only diffs + # via the reusable workflow's prompt and posts a "Skipped: ..." summary, + # which keeps the review/Claude Review check green. Adding paths-ignore + # here would prevent the workflow from running at all on docs-only PRs, + # leaving any required-check ruleset deadlocked. Add per-project ignores + # only when you know the ruleset doesn't require this check. # Reusable workflow's job-level permissions are CAPPED by the caller's # workflow-level permissions. These must match (or exceed) what the