GH-2211: Wire native sub-issue linking into epic decomposition (internal/executor/)#2230
Merged
alekspetrov merged 1 commit intomainfrom Apr 7, 2026
Merged
GH-2211: Wire native sub-issue linking into epic decomposition (internal/executor/)#2230alekspetrov merged 1 commit intomainfrom
internal/executor/)#2230alekspetrov merged 1 commit intomainfrom
Conversation
…GH-2211) Add SubIssueLinker interface to Runner. After each gh issue create in createSubIssuesViaGitHub(), call LinkSubIssue(owner, repo, parentNum, childNum) to establish the native GitHub parent→child relationship. Failures are warn-level and non-fatal — the "Parent: GH-N" body text remains as fallback. Wire *github.Client as the linker in main.go alongside the existing merge-wait setup.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Automated PR created by Pilot for task GH-2211.
Closes #2211
Changes
GitHub Issue #2211: Wire native sub-issue linking into epic decomposition (
internal/executor/)Parent: GH-2209
In
createSubIssuesViaGitHub()(epic.go ~line 556), after thegh issue createsucceeds and the issue number is parsed:*github.Client— Runner currently has noghClientfield. Add one, initialized from the GitHub adapter token already available in config. Alternatively, accept aSubIssueLinkerinterface with justLinkSubIssueto keep the dependency narrow.LinkSubIssue(ctx, owner, repo, parentNum, childNum)with a warn-level log on failure (non-fatal — the text marker remains as fallback).owner/repofrom the execution context orexecutionPath(the worktree's git remote). Check how the existing code resolves these —plan.ParentTask.SourceIssueIDand adapter metadata likely have them.Parent: GH-Nbody text intact for backwards compatibility.Files:
internal/executor/epic.go,internal/executor/runner.go(add field + constructor wiring)