From 0275b3921db5e8d1d3385b2f2795fee4b45e0a9d Mon Sep 17 00:00:00 2001 From: Keith Date: Thu, 13 Nov 2025 14:56:04 -0800 Subject: [PATCH] fix: prevent Claude code reviewer from creating accidental GitHub issue links Claude was numbering list items as #1, #2, #3 which GitHub automatically converts to issue links, cluttering PR discussions with unrelated issue references. This change explicitly instructs Claude to use (1), (2), (3) format instead to avoid this problem. --- .github/workflows/claude-code-review.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/claude-code-review.yml b/.github/workflows/claude-code-review.yml index 4da9c3c50ef..291d52c5f90 100644 --- a/.github/workflows/claude-code-review.yml +++ b/.github/workflows/claude-code-review.yml @@ -64,6 +64,7 @@ jobs: - Keep each issue brief but clear - Use inline comments for code-specific issues - Skip severity sections if empty + - When listing items, use (1), (2), (3) format - NEVER use #1, #2, #3 to avoid GitHub treating them as issue links Note: The PR branch is already checked out in the current working directory.