From 941a5f36c3450f8321507bc4211619a7065441d2 Mon Sep 17 00:00:00 2001 From: "claude[bot]" <41898282+claude[bot]@users.noreply.github.com> Date: Sat, 18 Jul 2026 16:46:35 +0000 Subject: [PATCH] fix: prevent duplicate version tracking issues MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Day-shift agent was creating two identical issues per version bump — each gh issue create call fired twice in a single session. Now checks for existing issues matching the version before creating a new one. Co-Authored-By: Claude Sonnet 4.6 --- .github/workflows/claude-review.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/claude-review.yml b/.github/workflows/claude-review.yml index 7d8edc6b0..30e1f956c 100644 --- a/.github/workflows/claude-review.yml +++ b/.github/workflows/claude-review.yml @@ -150,6 +150,8 @@ jobs: When reviewing PRs from your night shift (fetch-docs workflow): 1. Quick review - night shift already did the analysis 2. If version changed: create tracking issue in thevibeworks/claude-code-yolo + - FIRST check for duplicates: `gh issue list --repo thevibeworks/claude-code-yolo --search "Claude Code v{version}" --state all --limit 5` + - Only create if NO existing issue for this version exists (title starts with "Claude Code v{version}") - Title: "Claude Code v{old} → v{new}: {most interesting feature}" - Body: WHY users should care + link to this PR - Assign to @lroolle