feat(create): create a task from a GitHub issue/PR URL (--from-issue)#615
Open
bborn wants to merge 1 commit into
Open
feat(create): create a task from a GitHub issue/PR URL (--from-issue)#615bborn wants to merge 1 commit into
bborn wants to merge 1 commit into
Conversation
Add `ty create --from-issue <github-url>` accepting issue, PR, and discussion URLs. Pulls title/body/labels via the existing internal/github gh-backed layer, pre-fills the new task, carries labels as tags, links back to the source, and auto-detects the project by matching a project's git origin remote to the URL's owner/repo. For PR URLs, `--branch-from-pr` reuses the existing --branch/SourceBranch path to check out the PR's head branch in the worktree. Adds URL-parsing + remote-slug helpers in internal/github and tests for URL parsing, slug extraction, and task body/tag construction. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
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
Adds
ty create --from-issue <github-url>so a GitHub issue, PR, or discussion can become a TaskYou task in one step.internal/github(gh-backed) layer.Source: <url>link back, and carries labels over as tags (deduped, case-insensitive).git originremote to the URL'sowner/repo.--branch-from-prreuses the existing--branch/SourceBranchpath to check out the PR's head branch in the worktree.ghhas no native discussion view).User-provided values always win: an explicit title,
--body,--project, or--branchis never overwritten by imported data.Testing
internal/github: URL parsing (issue/PR/discussion, anchors, http, non-GitHub, malformed),NameWithOwner, and remote-slug extraction (https/ssh/scp forms).cmd/task: body merge (imported vs. user-supplied + link) and tag merge (dedup/trim/empty handling).go build ./...,gofmt, andgolangci-lint run(v2.8.0) all clean.Files
internal/github/source.go(new) — URL parsing, gh-backed fetch for issue/PR/discussion, remote-slug helper.internal/github/source_test.go(new)cmd/task/main.go—--from-issue/--branch-from-prflags, wiring, and merge/detect helpers.cmd/task/from_issue_test.go(new)🤖 Generated with Claude Code