Non-Blocking Review Concern: uses_local_path can misclassify a workflow that mixes local actions with a remote blocking-review pin
Source: pre-push whole-codebase review
Location: bulk-install-claude-review.sh:143-145
Date: 2026-04-30
What was flagged
uses_local_path matches any uses: ./... line in the file, but it's invoked on a file already known to reference claude-blocking-review.yml. If a single workflow has both a local action (uses: ./.github/actions/setup) and a remote reusable workflow pin (uses: smartwatermelon/.../claude-blocking-review.yml@v2.0.0), the file is wrongly classified as LOCAL and the stale pin is never bumped. Tighter pattern: anchor the ./ to the blocking-review filename specifically, e.g. grep -qE 'uses:[[:space:]]*\./[^[:space:]]*claude-blocking-review\.yml'. Low likelihood across the smartwatermelon fleet (caller workflows are typically standalone), but the misclassification fails silently — the script reports LOCAL, the operator skips it, and the stale pin lingers.
Context
This issue was automatically created from a non-blocking concern identified
during pre-push whole-codebase review. It was flagged for tracking.
Created by lib-review-issues.sh
Non-Blocking Review Concern: uses_local_path can misclassify a workflow that mixes local actions with a remote blocking-review pin
Source: pre-push whole-codebase review
Location:
bulk-install-claude-review.sh:143-145Date: 2026-04-30
What was flagged
uses_local_pathmatches anyuses: ./...line in the file, but it's invoked on a file already known to referenceclaude-blocking-review.yml. If a single workflow has both a local action (uses: ./.github/actions/setup) and a remote reusable workflow pin (uses: smartwatermelon/.../claude-blocking-review.yml@v2.0.0), the file is wrongly classified as LOCAL and the stale pin is never bumped. Tighter pattern: anchor the./to the blocking-review filename specifically, e.g.grep -qE 'uses:[[:space:]]*\./[^[:space:]]*claude-blocking-review\.yml'. Low likelihood across the smartwatermelon fleet (caller workflows are typically standalone), but the misclassification fails silently — the script reports LOCAL, the operator skips it, and the stale pin lingers.Context
This issue was automatically created from a non-blocking concern identified
during pre-push whole-codebase review. It was flagged for tracking.
Created by lib-review-issues.sh