From 367259168db062a31d35e5db0a19fae3586b8658 Mon Sep 17 00:00:00 2001 From: v4rgas <66626747+v4rgas@users.noreply.github.com> Date: Mon, 13 Oct 2025 20:13:44 -0300 Subject: [PATCH] =?UTF-8?q?fix:=20renumber=20phases=20in=20import.go=20(Ph?= =?UTF-8?q?ase=204.5=20=E2=86=92=20Phase=205,=20Phase=205=20=E2=86=92=20Ph?= =?UTF-8?q?ase=206)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- cmd/bd/import.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cmd/bd/import.go b/cmd/bd/import.go index b1988efb..92f46b94 100644 --- a/cmd/bd/import.go +++ b/cmd/bd/import.go @@ -238,14 +238,14 @@ Behavior: } } - // Phase 4.5: Sync ID counters after importing issues with explicit IDs + // Phase 5: Sync ID counters after importing issues with explicit IDs // This prevents ID collisions with subsequently auto-generated issues if err := sqliteStore.SyncAllCounters(ctx); err != nil { fmt.Fprintf(os.Stderr, "Warning: failed to sync ID counters: %v\n", err) // Don't exit - this is not fatal, just a warning } - // Phase 5: Process dependencies + // Phase 6: Process dependencies // Do this after all issues are created to handle forward references var depsCreated, depsSkipped int for _, issue := range allIssues {